12

这是我的服务文件:

[Unit]
Description=Daphne Interface

[Service]
ExecStartPre=cd /home/git/hsfzmun/server
ExecStart=/bin/bash/ -c "cd /home/git/hsfzmun/server && /home/git/virtualenvs/hsfzmun/bin/daphne -b 0.0.0.0 -p 8001 -v2 config.asgi:channel_layer"
Restart=always
KillSignal=SIGQUIT
Type=notify
NotifyAccess=all

[Install]
WantedBy=multi-user.target

当我执行时,sudo systemctl start daphnei我得到:

Failed to start daphnei.service: Unit daphnei.service is not loaded properly: Invalid argument.
See system logs and 'systemctl status daphnei.service' for details.

结果systemctl status daphnei.service

* daphnei.service - Daphne Interface
   Loaded: error (Reason: Invalid argument)
   Active: inactive (dead) (Result: exit-code) since Mon 2017-02-13 19:55:10 CST; 13min ago
 Main PID: 16667 (code=exited, status=1/FAILURE)

怎么了?我正在使用 Ubuntu 服务器 16.04。

4

2 回答 2

15

通常,要调试“无效参数”的确切原因,您可以使用:

sudo systemd-analyze verify daphnei.service

或者如果是用户的本地服务:

sudo systemd-analyze --user verify daphnei.service

于 2018-07-18T22:58:57.383 回答
6

也许你现在已经弄清楚了,但是你的行中还有一个额外的/后面。/bin/bashExecStart

我可能有一个稍微更新的版本systemd——当我尝试它时,输出systemctl status包含以下消息:

Executable path specifies a directory, ignoring: /bin/bash/ -c "cd /home/git/hsfzmun/server && /home/git/virtualenvs/hsfzmun/bin/daphne -b 0.0.0.0 -p 8001 -v2 config.asgi:channel_layer"

此外,您可以考虑WorkingDirectory在服务中使用一行,而不是cd &&

于 2017-05-18T03:50:46.290 回答