Q. How do I find out my process is running? How do I get pid number for particular process?
A. The easiest way to find out is run ps aux command and grep process name. If you got output along with process name/pid, your process is running.
Task: Find out process pid
Simply use ps command as follows:
ps aux | grep {process-name}
For example find out if mysqld process (mysqld pid) is running or not:
$ ps aux | grep mysqld
Output:
mysql 28290 1.1 2.7 340496 56812 ? Sl Jul31 348:27 /usr/libexec/mysqld --defaults-file=/etc/my.cnf --basedir=/usr --datadir=/var/lib/mysql --user=mysql --pid-file=/var/run/mysqld/mysqld.pid --skip-locking --socket=/var/lib/mysql/mysql.sock
Find the process ID of a running program using pidof
pidof command finds the process id’s (pids) of the named programs. It prints those id’s on screen. This program is on some systems used in run level change scripts, especially when the system has a System-V like rc structure. In that case these scripts are located in /etc/rc?.d, where ? is the runlevel. If the system has a start-stop-daemon (8) program that should be used instead.
# pidof mysqld
Output:
28290
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- My 10 UNIX Command Line Mistakes
- Linux: 20 Iptables Examples For New SysAdmins

- 25 PHP Security Best Practices For Sys Admins
- The Novice Guide To Buying A Linux Laptop
- 10 Greatest Open Source Software Of 2009
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Linux Video Editor Software
Facebook it - Tweet it - Print it -


{ 12 comments… read them below or add one }
hay man you can use pgrep also know?
why ps -aux | grep process name?
u can use pgrep like this
pgrep process name
pgrep httpd
pgrep named
pgrep firefox
etc
if any special about your command just give me info related to it
Thanks Surendra, damn good tips
you can also use this :
$>pkill -f cruisecontrol
in a cruisecontrol process which runs under java. -f does a substring search of the process string.
man, u guys rock, trust me it helps so much, when my maya hangs.
special thanks: adrian B, pkill -f maya: wow, toogood
Hi .
I have a probleam . when i start mysql it is showing MySQL manager or server PID file could not be found! [FAILED] . Starting MySQL/etc/init.d/mysql: line 159: kill: (5984) – No such process .how to solve the probleam. if any one know plz help me
Thank you very much for the info.. it works for me..
i tried using kill(pid,0) to test whether the process is existent, need to include
Aaron
when i reconfigure (squid -k reconfigure) squid i got error.
like this
squid: ERROR: Could not send signal 1 to process 6471: (3) No such process
how i can remove this error please help me.
Thanks in advance
hanks ive been searching the net on how to find the pid of a process and this post solve my problem. thank you
Bear in mind that the command itself can show up in the results. For instance:
If you only see the grep command listed, that means the named command is not running.
Hi,
I still can’t see my pid number for my postfix services. can’t find that. Help me. Thanks.
Using: Linux server 11.04
why ? mark indicating ?? while each ps -ef |grep some process