After a server reboot, your (windows) database stays down, even though you have it set to come up automatically - why? The services have started, just not the database.
The following is a clue:
|
|
|
|
You now have two options to check, and both must be confirmed:
- Is the
oracle
user a member of theora_dba
group? - Is
sqlnet.ora
correctly configured?
To check the first, proceed as follows (on the database server!):
- Start->Programs->Administrative Tools->Computer Management.
- Double-click Local Users and Groups.
- Double-click Groups.
- Double-click ora_dba (on the right) if it exists. If it doesn’t, it should - so have it added.
- The list of members of the ora_dba group should appear. Make sure that the oracle user is listed. If not, add it to the group.
- If you made changes, logout of the oracle user and back in again, then continue.
To correctly configure sqlnet.ora, make sure that the following line appears:
SQLNET.AUTHENTICATION_SERVICES=(NTS)
If it is not found, then the default is (NONE)
which requires a username and password always be supplied when connecting as sysdba
or sysoper
.
If it is set to anything else, other than (ALL)
, then it should be ok - although some of the other settings may not use (NTS)
- you need to test on your system to be sure.
Now that you can connect "/ as sysdba"
, you can check the oradim.log
(%oracle_home%\database\oradim.log
) to see if there are any of these errors corresponding to your server reboot times:
|
|
You may also find entries in the application pages of the event viewer with similar messages:
|
|
The alert log shows no errors whatsoever. It won’t, you didn’t get that far!
If the oradim.log
shows no errors of the above kind, you may not have the database configured to autostart. So, delve into the registry.
If the two following keys exist, and have the value true, then all should be well on the next restart. Otherwise add/edit them manually. Setting both to true ensures that when you start and stop the services the database will also start and stop.
When the server is rebooted, the services are told to stop, so they will stop the database cleanly before the server goes down. The reverse is true on a server startup, the services are told to start and they tell the database to come on up!
|
|
If all of the above pan out, next time you restart the server, the database will come up!
You can test without bouncing the server simply by shutting down and restarting the database service from control panel. On a restart of the service, the database should also be back up and running. If not, get into the oradim.log
again, and fix the problem you find.
Cheers.