Stop Oracle service in UNIX Linux
Stop Oracle service in UNIX Linux
How To Startup Oracle Database on a Unix/Linux
Use the su - username command to login as oracle user. Open the Terminal or login using ssh and type the following command to login
$ su - oracleStart Oracle server in UNIX/Linux
Now, use the lsnrctl command to start service (usually located at /home/oracle/oracle/product/10.2.0/db_1/bin directory):
Next start database:
If above is not working try to login as sysdba:
At SQL> type startup command:
$ lsnrctl startNext start database:
$ dbstartIf above is not working try to login as sysdba:
$ sqlplus / as sysdbaAt SQL> type startup command:
SQL> startupStop Oracle service in UNIX/Linux
To stop Oracle service type following two commands:
If above failed login as sysdba user:
At SQL> type shutdown command:
$ lsnrctl stop
$ dbshutIf above failed login as sysdba user:
$ sqlplus / as sysdbaAt SQL> type shutdown command:
SQL> shutdowndownload file now
Comments
Post a Comment