Startup/Shutdown
Use the following commands to turn on all components installed by this article.
#!/bin/bash export ORACLE_HOME=/u01/app/oracle/product/11.2.0/db_1 export OMS_HOME=/u01/app/oracle/Middleware/oms export AGENT_HOME=/u01/app/oracle/Middleware/agent/core/12.1.0.1.0 # Start everything $ORACLE_HOME/bin/dbstart $ORACLE_HOME $OMS_HOME/bin/emctl start oms $AGENT_HOME/bin/emctl start agent
Use the following commands to turn off all components installed by this article.
#!/bin/bash export ORACLE_HOME=/u01/app/oracle/product/11.2.0/db_1 export OMS_HOME=/u01/app/oracle/Middleware/oms export AGENT_HOME=/u01/app/oracle/Middleware/agent/core/12.1.0.1.0 # Stop everything $OMS_HOME/bin/emctl stop oms -all $AGENT_HOME/bin/emctl stop agent $ORACLE_HOME/bin/dbshut $ORACLE_HOME
No comments:
Post a Comment