Systemd - パスが絶対パスではないため実行できません

Systemd - パスが絶対パスではないため実行できません

私は Linux を使用しています。自分のユーザーのルートにアクセスできます。

root@marais:~# pwd
/root

このディレクトリには次のものがあります:

root@marais:~# ls
example.log  log_watcher.service  log_watcher.sh

ログウォッチャーサービス

[Install]
WantedBy=multi-user.target

[Unit]
Description=Log Watcher Service

[Service]
ExecStart=log_watcher.sh

ログウォッチャー

# File to output to
ErrorLogFile="./error.log"
# File to read from
ExampleLogFile="./example.log"


if [ ! -e "$ErrorLogFile" ]; then   # check if file exists
    echo "Creating error file $ErrorLogFile"
    touch $ErrorLogFile
fi

echo "copying error messages from $ExampleLogFile to $ErrorLogFile"
# copy from one file to the other
 ### Challenge 1 ###
# grep ERROR $ExampleLogFile > $ErrorLogFile 
 ### Challenge 2 ###
# tail -f $ExampleLogFile | grep --line-buffered  ERROR | tee $ErrorLogFile 
while :; do grep ERROR $ExampleLogFile > $ErrorLogFile; sleep 2; done

echo "done"

以下を実行します:

systemctl enable log_watcher

シンボリックリンクを設定するというメッセージがあったので、これは正常に動作したようです。

ここでサービスを開始しようとすると、次のようになります。

systemctl start log_watcher

何も起こらないようです。つまり、 はlog_watcher.sh呼び出されません。

ステータスを取得すると次のようになります。

systemctl status log_watcher

log_watcher.shは絶対パスで呼び出されていないと表示されます。

root@marais:~# systemctl status log_watcher
● log_watcher.service - Log Watcher Service
   Loaded: error (Reason: Invalid argument)
   Active: failed (Result: exit-code) since Fri 2019-10-18 10:49:32 CEST; 9min ago
 Main PID: 2850 (code=exited, status=203/EXEC)

Oct 18 10:49:32 marais systemd[1]: Started Log Watcher Service.
Oct 18 10:49:32 marais systemd[1]: log_watcher.service: Main process exited, code=exited, status=203/EXEC
Oct 18 10:49:32 marais systemd[1]: log_watcher.service: Unit entered failed state.
Oct 18 10:49:32 marais systemd[1]: log_watcher.service: Failed with result 'exit-code'.
Oct 18 10:50:12 marais systemd[1]: [/root/log_watcher.service:8] Executable path is not absolute, ignoring: log_watcher.sh
Oct 18 10:50:12 marais systemd[1]: log_watcher.service: Service lacks both ExecStart= and ExecStop= setting. Refusing.
Warning: log_watcher.service changed on disk. Run 'systemctl daemon-reload' to reload units.

実行すると:

root@marais:~# readlink -f log_watcher.sh
/root/log_watcher.sh

絶対パスは であり/root/、これは で定義したパスであることがわかりますlog_watcher.service

ExecStart=/root/log_watcher.sh

質問

このサービスを開始して実行するにはどうすればよいか教えてくださいlog_watcher.sh

ありがとう

答え1

.service ファイルでは、/bin/bashスクリプトへのパスの前に追加する必要があります。

たとえば、backup.service の場合:

ExecStart=/bin/bash /root/log_watcher.sh

関連情報