如何从 PHP 脚本检查 ruby​​ 脚本是否在后台运行?

发布于 2024-08-08 22:07:50 字数 209 浏览 8 评论 0原文

假设 ruby​​ 脚本正在使用 PHP 运行

ruby​​.rb SOMEUSERID

,我如何查明当前是否正在运行完全相同的东西?目前我正在使用 PID 来检查,但我不确定这是否有效。如果有很多用户运行 ruby​​ 脚本,并且 ruby​​ 脚本意外关闭怎么办? php 脚本现在寻找这个 PID,然后发现它是其他人的 ruby​​ 脚本......问题随之而来。

say a ruby script is running

ruby.rb SOMEUSERID

using PHP, how can i find out whether something exactly like that is currently running or not ? Currently i am using PID to check but im not sure if this is efficient. What if there are lot of users running the ruby script, and the ruby script unexpectedly closes. The php script now looks for this PID, and then it turns out it's somebody else's ruby script....trouble ensues.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

美男兮 2024-08-15 22:07:50

我不喜欢这个想法,但你可以在 Linux 上执行此操作,

exec('ps -A | grep ruby.rb', $output);

不确定其他系统的情况如何。

I don't like the idea but you can do this on linux

exec('ps -A | grep ruby.rb', $output);

not sure what's about other systems.

错々过的事 2024-08-15 22:07:50

也许解析“ps ax”的输出

Parse output from 'ps ax' perhaps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文