Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need a platform independent (Linux/Unix|OSX) shell/bash command that will determine if a specific process is running. e.g. mysqld, httpd... What is the simplest way/command to do this?

share|improve this question
2  
ps + grep?.. – NPE Feb 2 '12 at 18:08

10 Answers

up vote 20 down vote accepted

While pidof and pgrep are great tools for determining what's running, they are both, unfortunately, unavailable on some operating systems. A definite fail safe would be to use the following: ps cax | grep command

The output on Gentoo Linux:

14484 ?        S      0:00 apache2
14667 ?        S      0:00 apache2
19620 ?        Sl     0:00 apache2
21132 ?        Ss     0:04 apache2

The output on OS X:

42582   ??  Z      0:00.00 (smbclient)
46529   ??  Z      0:00.00 (smbclient)
46539   ??  Z      0:00.00 (smbclient)
46547   ??  Z      0:00.00 (smbclient)
46586   ??  Z      0:00.00 (smbclient)
46594   ??  Z      0:00.00 (smbclient)

On both Linux and OS X, grep returns an exit code so it's easy to check if the process was found or not:

#!/bin/bash
ps cax | grep httpd > /dev/null
if [ $? -eq 0 ]; then
  echo "Process is running."
else
  echo "Process is not running."
fi

Furthermore, if you would like the list of PIDs, you could easily grep for those as well:

ps cax | grep httpd | grep -o '^[ ]*[0-9]*'

Whose output is the same on Linux and OS X:

3519 3521 3523 3524

The output of the following is an empty string, making this approach safe for processes that are not running:

echo ps cax | grep aasdfasdf | grep -o '^[ ]*[0-9]*'

This approach is suitable for writing a simple empty string test, then even iterating through the discovered PIDs.

#!/bin/bash
PROCESS=$1
PIDS=`ps cax | grep $PROCESS | grep -o '^[ ]*[0-9]*'`
if [ -z "$PIDS" ]; then
  echo "Process not running." 1>&2
  exit 1
else
  for PID in $PIDS; do
    echo $PID
  done
fi

You can test it by saving it to a file (named "running") with execute permissions (chmod +x running) and executing it with a parameter: ./running "httpd"

#!/bin/bash
ps cax | grep httpd
if [ $? -eq 0 ]; then
  echo "Process is running."
else
  echo "Process is not running."
fi

WARNING!!!

Please keep in mind that you're simply parsing the output of ps ax which means that, as seen in the Linux output, it is not simply matching on processes, but also the arguments passed to that program. I highly recommend being as specific as possible when using this method (e.g. ./running "mysql" will also match 'mysqld' processes). I highly recommend using which to check against a full path where possible.


References:

http://linux.about.com/od/commands/l/blcmdl1_ps.htm

http://linux.about.com/od/commands/l/blcmdl1_grep.htm

share|improve this answer
1  
Thanks, I ended up using ps cax | grep mysql > /dev/null || "Mysql ain't runnin' message/actions" – Highway of Life Feb 3 '12 at 0:42
Ah! Excellent usage of the grep exit code. – Caleb Gray Feb 3 '12 at 15:42
The process can be running, but stopped. So if the goal is to test if mysqld or httpd are "up and running" (responding), you should also check if it is stopped or not. – oluc May 2 at 8:16

On most Linux distributions, you can use pidof(8).

It will print the process ids of all running instances of specified processes, or nothing if there are no instances running.

For instance, on my system (I have four instances of bashand one instance of remmina running):

$ pidof bash remmina
6148 6147 6144 5603 21598

On other Unices, pgrep or a combination of ps and grep will achieve the same thing, as others have rightfully pointed out.

share|improve this answer
+1 pidof httpd works fine on Red Hat 5. But on my Red Hat 4, pidof is not present :-( – olibre Feb 2 '12 at 18:13
OSX: command not found: pidof – Johnsyweb Feb 2 '12 at 18:13
Indeed, this command is less widespread than I thought, I edited my answer to make this clearer. – Frédéric Hamidi Feb 2 '12 at 18:15

This should work on most flavours of Unix, BSD and Linux:

PATH=/usr/ucb:${PATH} ps aux | grep httpd | grep -v grep

Tested on:

  • SunOS 5.10 [Hence the PATH=...]
  • Linux 2.6.32 (CentOS)
  • Linux 3.0.0 (Ubuntu)
  • Darwin 11.2.0
  • FreeBSD 9.0-STABLE
  • Red Hat Enterprise Linux ES release 4
  • Red Hat Enterprise Linux Server release 5
share|improve this answer
1  
+1 Yes simply ps. To avoid the second grep I suggest: ps aux | grep [h]ttpd – olibre Feb 2 '12 at 18:19
I didn't use the square bracket trick here to make it easier to put a variable into the main grep. – Johnsyweb Feb 2 '12 at 18:28
1  
All right ;) I have just tested on Red Hat AS 4 and Red Hat AP 5. Of course I works! So you can add in your list: Red Hat Enterprise Linux ES release 4 and Red Hat Enterprise Linux Server release 5. Cheers – olibre Feb 2 '12 at 18:53
@oHessling: Thank you. – Johnsyweb Feb 2 '12 at 19:04
@Downvoter: Why? What did I miss? As far as I can tell, the accepted answer is doing the same lookup! – Johnsyweb Feb 2 '12 at 20:57

Just a minor addition: if you add the -c flag to ps, you don't need to remove the line containing the grep process with grep -v afterwards. I.e.

ps acux | grep cron

is all the typing you'll need on a bsd-ish system (this includes MacOSX) You can leave the -u away if you need less information.

On a system where the genetics of the native ps command point back to SysV, you'd use

ps -e |grep cron

or

ps -el |grep cron 

for a listing containing more than just pid and process name. Of course you could select the specific fields to print out using the -o <field,field,...> option.

share|improve this answer
Brilliant, thank you! – Highway of Life Feb 2 '12 at 21:33

I use pgrep -l httpd but not sure it is present on any platform...
Who can confirm on OSX?

share|improve this answer
'command not found: pgrep' – Johnsyweb Feb 2 '12 at 18:13
Thanks @Johnsyweb. Can you also check pidof please? OK you did. Thank you. So we should find something else working on OSX... Your basic ps|grep may be the single solution ;-) – olibre Feb 2 '12 at 18:15
pgrep and pidof don't work on all linux/unix OSes – Highway of Life Feb 2 '12 at 21:34

The simpliest way is to use ps and grep:

command="httpd"
running=`ps ax | grep -v grep | grep $command | wc -l`
if [ running -gt 0 ]; then
    echo "Command is running"
else
    echo "Command is not running"
fi

If your command has some command arguments, then you can also put more 'grep cmd_arg1' after 'grep $command' to filter out other possible processes that you are not interested in.

Example: show me if any java process with supplied argument:

-Djava.util.logging.config.file=logging.properties

is running

ps ax | grep -v grep | grep java | grep java.util.logging.config.file=logging.properties | wc -l
share|improve this answer
Actually, using ps cax eliminates the need to use grep -v. So for example, you can use: ps cax | grep java > /dev/null || echo "Java not running". – Highway of Life Oct 29 '12 at 19:26

pgrep might be worth a short

share|improve this answer
pgrep doesn't work on all linux/unix OSes – Highway of Life Feb 2 '12 at 21:34

If you know the PID:

ps -p <pid>

is POSIX and hence portable.

I think it is a good idea always to store the PID when you launch something in the background. In Bash this can be done with the $! Bash variable. You will save yourself SO much trouble by doing so. The alternative is that you later try to find the process from some unique text in the process arguments, such as "mysqld". This is a strategy that is doomed to fail sooner or later. What if you have two mysqld running? Forget that approach. You MAY get it right temporarily and it MAY work for a year or two but then something happens that you haven't thought about.

Only the pid is truly unique.

share|improve this answer

This helps ps -ef|grep trololo

share|improve this answer
1  
Please don't add "thank you" as an answer. Instead, vote up the answers that you find helpful. – Toon Krijthe Apr 11 at 11:28
This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post. – Gaurav Vashishtha Apr 11 at 11:38
ps -A | grep mysqld

The 'ps -A' command will print all the processes out and pipe it's output into the input of 'grep mysqld' which should show only the lines which have mysqld as the process name. It will also show the process id etc of the process if it's running.

This way you don't need the pid to find it.

share|improve this answer
This will also likely match on the process "grep msqld". – jordanm Feb 2 '12 at 20:51
This would not produce the results someone might expect, since it would return true with a grep process containing "mysqld" in the command. – Highway of Life Feb 2 '12 at 21:35

protected by Toon Krijthe Apr 11 at 11:28

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.