从 PHP 启动和分叉屏幕会话
如何让 php 启动 GNU Screen 并在 php 脚本执行完毕后保持其运行?
How can I make php start GNU Screen and keep it running after the php script has finished executing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试使用:
尽管
-dmS
应该已经足以使 screen fork 本身进入后台进程。You could try with:
Albeit
-dmS
should already be sufficient to make screen fork itself into a background process.使用 -dmS 命令行参数运行它,强制它作为守护进程启动(即:立即分离)。
命令行参数的在线文档此处。
Run it with
-dmS
command line arguments, which force it to start as a daemon (ie: immediately detach).Online docs for the command line args here.