Operating System - Linux
1828015 Members
1570 Online
109973 Solutions
New Discussion

How to find application running

 
easakki
New Member

How to find application running

Hi,
I am working in HP-unix.
I want to find what are the applications running.
can any one help me regarding this.

Thanks in advance,
Easakki

 

P.S. This thread has been moved from HP-UX Technical Documentation to  HP-UX > languages. -HP Forum Moderator

7 REPLIES 7
Mridul Shrivastava
Honored Contributor

Re: How to find application running

ps -ef output will give you details of all the services running....

If you are searching for a specific application then just give the above command and grep for the application name.

ps -ef |grep -i "aapplication name"
Time has a wonderful way of weeding out the trivial
gstonian
Trusted Contributor

Re: How to find application running

export UNIX95=true
ps -efH

This allows you to see a hierarchical structure of the processes.
Peter Godron
Honored Contributor

Re: How to find application running

Hi,
as you indicated by your alloaction of 4 points, the answer only answered part of your question. What other info do you require ?

Have you tried the command "top" ?
Alpha977
Valued Contributor

Re: How to find application running

Hello easakki!

You can see all process by:

$top > proc.txt

wait 1 or 2 second then CTRL+C

$view proc.txt

Bye!

Dennis Handly
Acclaimed Contributor

Re: How to find application running

>Alpha977: $ top > proc.txt
>Wait 1 or 2 second then CTRL+C

Instead of that, you should use:
$ top -f filename
dipesh_2
Regular Advisor

Re: How to find application running

ps -ef |grep -i "aapplication name"
& top command will help you for the same




points
Yogeeraj_1
Honored Contributor

Re: How to find application running

hi Easakki,

you may also look into your /etc/rc.log

You will find all the application that are started during the server startup.

hope this helps too!
kind regards
yogeeraj
No person was ever honoured for what he received. Honour has been the reward for what he gave (clavin coolidge)