我想根据参考书在systemd中注册服务。
但是,如果输入sudo systemctl start apasn
,则
#.service
[Unit]
Description=gunicorn daemon (apasn)
Requires=apasn.socket
After=network.target
[Service]
User=administrator
Group=www-data
WorkingDirectory=/home/administrator/apasn
ExcecStart=/home/administrator/apasn/venv/bin/gunicorn --access-logfile - --workers 3 --bind unix:/run/gunicorn/apasn.sock person_manager.wsgi:application
[Install]
WantedBy=multi-user.target
您将得到一个错误。 而且我解决不了。
无法启动apasn.service:未加载单元apasn.service 正确:参数无效。查看系统日志和'systemctl状态 apasn.service”。
答案 0 :(得分:0)
sudo systemd-analyze验证daphnei.service 是在将ExcecStart更改为ExecStart之后完成的。