How can I check from Ruby whether a process with a certain pid is running? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T21:38:13Z http://stackoverflow.com/feeds/question/325082 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/325082/how-can-i-check-from-ruby-whether-a-process-with-a-certain-pid-is-running 1 How can I check from Ruby whether a process with a certain pid is running? Pistos 2008-11-28T05:11:57Z 2008-11-28T05:23:57Z <p>The question title says it all. If there is more than one way, please list them. :) I only know of one, but I'm wondering if there is a cleaner, in-Ruby way.</p> http://stackoverflow.com/questions/325082/how-can-i-check-from-ruby-whether-a-process-with-a-certain-pid-is-running/325083#325083 0 Answer by Pistos for How can I check from Ruby whether a process with a certain pid is running? Pistos 2008-11-28T05:12:16Z 2008-11-28T05:12:16Z <p>Parse the output of ps.</p> http://stackoverflow.com/questions/325082/how-can-i-check-from-ruby-whether-a-process-with-a-certain-pid-is-running/325088#325088 8 Answer by Dustin for How can I check from Ruby whether a process with a certain pid is running? Dustin 2008-11-28T05:17:26Z 2008-11-28T05:17:26Z <p>If it's a process you expect to "own" (e.g. you're using this to validate a pid for a process you control), you can just send sig 0 to it.</p> <pre><code>&gt;&gt; Process.kill 0, 370 =&gt; 1 &gt;&gt; Process.kill 0, 2 Errno::ESRCH: No such process from (irb):5:in `kill' from (irb):5 &gt;&gt; </code></pre> http://stackoverflow.com/questions/325082/how-can-i-check-from-ruby-whether-a-process-with-a-certain-pid-is-running/325092#325092 1 Answer by John T for How can I check from Ruby whether a process with a certain pid is running? John T 2008-11-28T05:19:38Z 2008-11-28T05:19:38Z <p>You can try using</p> <pre><code>Process::kill 0, pid </code></pre> <p>where pid is the pid number, if the pid is running it should return 1.</p> http://stackoverflow.com/questions/325082/how-can-i-check-from-ruby-whether-a-process-with-a-certain-pid-is-running/325097#325097 2 Answer by Pistos for How can I check from Ruby whether a process with a certain pid is running? Pistos 2008-11-28T05:23:57Z 2008-11-28T05:23:57Z <p>@John T, @Dustin: Actually, guys, I perused the Process rdocs, and it looks like </p> <pre><code>Process.getpgid( pid ) </code></pre> <p>is a less violent means of applying the same technique.</p>