HA Oracle startup/shutdown question
807567Jun 7 2007 — edited Jun 11 2007Environment:
2 Sunfire V890's running solaris 2.9 and SC3.1U4
Hello All,
I am having a problem with oracle startup and shutdown in my cluster. In order to get oracle to startup after a failover, shutdown what have you, I need to implement the following procedure as a pre/post oracle startup operation/script. Can anyone tell me if there is a place or hook in the HAOracle agent where I can add my own operation? I would rather avoid having to write a GDS agent in order to do this, if it is at all possilble.
Thanks,
George Cebulka
PS
Please Note: (This is a DBA thing, not mine!)
************** Begin *********************
After a failover or startup we need following to avoid the �authentication error�
1. remove the sqlnet.ora soft link from $ORACLE_HOME/network/admin
1. rm /global/oracle/oracledb/oraclev10201/network/admin/sqlnet.ora
2. Create a new soft link to sqlnet.ora in $ORACLE_HOME/network/admin as following
1. ln �s /global/pitt/dba/network/net8/sqlnet.ora /global/oracle/oracledb/oraclev10201/network/admin/sqlnet.ora
3. startup the database and listeners (using cluster database).
4. Now database is up and running and we need to turn on radius authentication for which we need this post stuff
5. Remove the sqlnet.ora link
1. rm /global/oracle/oracledb/oraclev10201/network/admin/sqlnet.ora
6. Create a new soft link to replace sqlnet.ora with radius sqlnet.ora
1. ln �s /global/pitt/dba/network/net8/sqlnet.ora.radius /global/oracle/oracledb/oraclev10201/network/admin/sqlnet.ora
*************** End ******************