Created
December 5, 2016 04:00
-
-
Save dodyagung/abe568d44977b46edc89201b03a509b0 to your computer and use it in GitHub Desktop.
How Do I Start Oracle Service in UNIX or Linux?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---- Copied from https://www.cyberciti.biz/faq/how-do-i-start-oracle-service-in-unix/ ---- | |
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 - oracle | |
Start 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): | |
$ lsnrctl start | |
Next start database: | |
$ dbstart | |
If above is not working try to login as sysdba: | |
$ sqlplus '/ as sysdba' | |
At SQL> type startup command: | |
SQL> startup | |
Stop Oracle service in UNIX/Linux | |
To stop Oracle service type following two commands: | |
$ lsnrctl stop | |
$ dbshut | |
If above failed login as sysdba user: | |
$ sqlplus '/ as sysdba' | |
At SQL> type shutdown command: | |
SQL> shutdown |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment