How can I check from Ruby whether a process with a certain pid is running? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T21:38:13Zhttp://stackoverflow.com/feeds/question/325082http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/325082/how-can-i-check-from-ruby-whether-a-process-with-a-certain-pid-is-running1How can I check from Ruby whether a process with a certain pid is running?Pistos2008-11-28T05:11:57Z2008-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#3250830Answer by Pistos for How can I check from Ruby whether a process with a certain pid is running?Pistos2008-11-28T05:12:16Z2008-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#3250888Answer by Dustin for How can I check from Ruby whether a process with a certain pid is running?Dustin2008-11-28T05:17:26Z2008-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>>> Process.kill 0, 370
=> 1
>> Process.kill 0, 2
Errno::ESRCH: No such process
from (irb):5:in `kill'
from (irb):5
>>
</code></pre>
http://stackoverflow.com/questions/325082/how-can-i-check-from-ruby-whether-a-process-with-a-certain-pid-is-running/325092#3250921Answer by John T for How can I check from Ruby whether a process with a certain pid is running?John T2008-11-28T05:19:38Z2008-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#3250972Answer by Pistos for How can I check from Ruby whether a process with a certain pid is running?Pistos2008-11-28T05:23:57Z2008-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>