我正在尝试从 systemd 运行主管,并且我正在关注本教程。
/etc/systemd/system/supervisord.service
使用以下内容创建此文件后:
[Unit]
Description=Supervisor daemon
Documentation=http://supervisord.org
After=network.target
[Service]
ExecStart=/usr/local/bin/supervisord -n -c /etc/supervisor/supervisord.conf
ExecStop=/usr/local/bin/supervisorctl $OPTIONS shutdown
ExecReload=/usr/local/bin/supervisorctl $OPTIONS reload
KillMode=process
Restart=on-failure
RestartSec=42s
[Install]
WantedBy=multi-user.target
Alias=supervisord.service
当我运行它时,我收到以下错误:
Mar 17 01:18:22 ubuntu-s-1vcpu-1gb-nyc3-01 systemd[1]: Started Supervisor daemon.
Mar 17 01:18:22 ubuntu-s-1vcpu-1gb-nyc3-01 systemd[8772]: supervisord.service: Failed to execute command: No such file or directory
Mar 17 01:18:22 ubuntu-s-1vcpu-1gb-nyc3-01 systemd[8772]: supervisord.service: Failed at step EXEC spawning /usr/local/bin/supervisord: No such file or directory
Mar 17 01:18:22 ubuntu-s-1vcpu-1gb-nyc3-01 systemd[1]: supervisord.service: Main process exited, code=exited, status=203/EXEC
Mar 17 01:18:22 ubuntu-s-1vcpu-1gb-nyc3-01 systemd[1]: supervisord.service: Failed with result 'exit-code'.
Mar 17 01:19:04 ubuntu-s-1vcpu-1gb-nyc3-01 systemd[1]: supervisord.service: Service hold-off time over, scheduling restart.
Mar 17 01:19:04 ubuntu-s-1vcpu-1gb-nyc3-01 systemd[1]: supervisord.service: Scheduled restart job, restart counter is at 1.
Mar 17 01:19:04 ubuntu-s-1vcpu-1gb-nyc3-01 systemd[1]: Stopped Supervisor daemon.
显然它说没有这样的目录,但是创建一个实际上是解决问题的正确方法吗?
我不确定的原因是因为在查看其他(我猜)类似的问题(例如:here)时,他们似乎以不同的方式解决它。同样在教程中,除了 的内容之外,它没有在其他任何地方提到这条路径(不存在的路径)supervisord.service
,所以我很困惑这里发生了什么。
任何人都可以向我解释或指出要阅读的特定内容,以便以正确的方式解决我的问题吗?
谢谢!
更新
locate supervisord
产量:
/etc/supervisor/supervisord.conf
/etc/systemd/system/supervisord.service
/usr/bin/echo_supervisord_conf
/usr/bin/supervisord
/usr/lib/python2.7/dist-packages/supervisor/supervisord.py
/usr/lib/python2.7/dist-packages/supervisor/supervisord.pyc
/usr/lib/python2.7/dist-packages/supervisor/tests/test_supervisord.py
/usr/lib/python2.7/dist-packages/supervisor/tests/test_supervisord.pyc
/usr/share/man/man1/echo_supervisord_conf.1.gz
/usr/share/man/man1/supervisord.1.gz
/var/log/supervisor/supervisord.log
locate supervisorctl
产量:
/usr/bin/supervisorctl
/usr/lib/python2.7/dist-packages/supervisor/supervisorctl.py
/usr/lib/python2.7/dist-packages/supervisor/supervisorctl.pyc
/usr/lib/python2.7/dist-packages/supervisor/tests/test_supervisorctl.py
/usr/lib/python2.7/dist-packages/supervisor/tests/test_supervisorctl.pyc
/usr/share/man/man1/supervisorctl.1.gz
您的服务文件为二进制文件指定了错误的位置。
在文件中,更改
至
和
至
接下来,运行命令
systemctl daemon-reload
,然后systemctl start supervisord
.您实际上并没有遵循该教程并通过 easy_install 安装主管包;它是从 Ubuntu 软件包安装的。该软件包已经包含一个 systemd 单元
supervisor.service
,您可以直接启动它。您不需要创建自己的单元。该教程也很糟糕,因为没有解释他们为什么做出他们做出的奇怪决定。我会丢弃该教程并使用您已经拥有的现有主管单元。
当然,我也会丢弃 supervisord,因为它是多余的;几乎它所做的一切都被 systemd 覆盖(并且更好)。我也会扔掉任何引导你尝试安装 supervisord 的教程。