Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to check to be sure all of the servics are down

Status
Not open for further replies.

ashley75

Technical User
Oct 4, 2002
94
US
I have an Oracle database running on Linux, oracle user is the owner for Oracle. How can I check to be sure all of the services which related to Oracle are shutdown???

Sorry, I am new to Linux

 
ps -fu oracle

Processes associated with the Oracle database generally have names that start with "ora". If you don't see any of these processes then your database is shut down.
 
You can do this command :
# ps -eaf | grep <process name>

Good Luck
 
Those are all good tips.
You may want to use an init script to startup/shutdown Oracle on any Unix machine which will make sure these services are all stopped/started properly.

I will post one soon on for anyone to use per the GPL licence.
It is not there at the time of this writing, but if I remember to post it, it will be there soon ;)


Take care,
Art Perry
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top