Operating System - HP-UX
1833883 Members
1907 Online
110063 Solutions
New Discussion

checking applications before & after patching server

 
Ravinder Singh Gill
Regular Advisor

checking applications before & after patching server

I am going to be patching a server. Before I patch the server I have to check what applications are running, stop them (and disable auto-start). Once I have completed the patching I have to reenable a the autostart on the applications once the patching is complete. Then having rebooted the server I have to confirm that all the applications are running.

To check the applications should I be doing: *unifstat?
*ps -ef?
or something else?
3 REPLIES 3
Giacomo TOTTI
Advisor

Re: checking applications before & after patching server

Yes,
ps -ef of course!!!

or even better

ps -ef|grep -v root

so you can see generally all the processes that don't belog to root (i.e. oracle, tibco or other).

bye
Giacomo

Mahesh Kumar Malik
Honored Contributor

Re: checking applications before & after patching server

Hi Ravinder

Example if you are using oracle

ps -ef | grep ora

Regards
Mahesh
Ravinder Singh Gill
Regular Advisor

Re: checking applications before & after patching server

Thanks