我正在尝试使用Foreman(版本0.31.0)来管理我们的应用程序的进程,但我对Nginx(Nginx / 1.0.10 Phusion Passenger 3.0.11)没有太多运气.
这是我的Procfile中的相关行:
Nginx: sudo /home/ubuntu/Nginx/sbin/Nginx
当我启动应用程序时,Foreman报告Nginx已启动,然后立即终止:
$foreman start
21:18:28 Nginx.1 | started with pid 27347
21:18:28 Nginx.1 | process terminated
21:18:28 system | sending SIGTERM to all processes
但是,即使Foreman另有报告,Nginx实际上仍在运行.
同样,如果我导出到Upstart:
rvmsudo foreman export upstart /etc/init -a my_app -u ubuntu
并运行sudo start my_app,Nginx正常启动.但是sudo停止my_app不会阻止Nginx.它继续运行.
让Nginx与Foreman合作是否有诀窍?
注意:我发现了this issue with Foreman,我想知道它是否相关.
最佳答案
原文链接:https://www.f2er.com/nginx/434545.html