web-dev-qa-db-ja.com

initスクリプトをsystemdに変換します-実行可能パスは絶対パスではありません

Initスクリプトの1つをsystemdに変換しようとしていますが、役に立ちません。

[Unit]
Description=My Service
After=network.target
Wants=mysql.service

[Service]
Type=oneshot
PIDFile=/var/run/MyService.pid
ExecStart=Nohup /usr/local/bin/php -f /home/user/www/myservice.php > /dev/null 2>&1

[Install]
WantedBy=multi-user.target

出力:

root@localserver [/etc/systemd/system]# service myservice restart
Redirecting to /bin/systemctl restart  myservice.service
Failed to restart myservice.service: Unit myservice.service failed to load: Invalid argument. See system logs and 'systemctl status myservice.service' for details.
root@localserver [/etc/systemd/system]# service myservice status
Redirecting to /bin/systemctl status  myservice.service
â myservice.service - My Service
   Loaded: error (Reason: Invalid argument)
   Active: activating (start) since Tue 2016-04-12 12:48:18 BST; 1min 9s ago
 Main PID: 22892 (php)
   CGroup: /system.slice/myservice.service
           ââ22892 /usr/local/bin/php -f /home/user/www/myservice.php

Apr 12 12:48:18 localserver systemd[1]: Starting My Service...
Apr 12 12:48:27 localserver systemd[1]: [/etc/systemd/system/myservice.service:9] Executable path is not absolute, ignoring: Nohup /usr/local/bin/php -f /home/user/www/myservice.php > /dev/null 2>&1
Apr 12 12:48:27 localserver systemd[1]: myservice.service lacks both ExecStart= and ExecStop= setting. Refusing.
root@localserver [/etc/systemd/system]#

なぜそれが機能しないのか考えはありますか?

1
Reado

systemdには絶対パスが必要です:

ExecStart=/usr/bin/Nohup /usr/local/bin/php -f /home/user/www/myservice.php > /dev/null 2>&1
1
Shuangistan