Operating System - HP-UX
1752801 Members
5753 Online
108789 Solutions
New Discussion юеВ

Re: Number of instances of a process.

 
SOLVED
Go to solution
santosh jha
Frequent Advisor

Number of instances of a process.

Hey guys how can i find how many instances of weblogic are running .

4 REPLIES 4
Pete Randall
Outstanding Contributor
Solution

Re: Number of instances of a process.

ps -ef |grep weblogic |wc -l

?


Pete

Pete
Mahesh Kumar Malik
Honored Contributor

Re: Number of instances of a process.

Hi Santosh

You could try ps -ef | grep web* |wc -l

Regards
Mahesh
Fedon Kadifeli
Super Advisor

Re: Number of instances of a process.

ps -ef | grep [w]eblogic | wc -l
santosh jha
Frequent Advisor

Re: Number of instances of a process.

Thanks a lot for the information.