Systemd - путь не абсолютный - невозможно выполнить

Systemd - путь не абсолютный - невозможно выполнить

Я использую Linux. У меня есть доступ к root для моего пользователя.

root@marais:~# pwd
/root

В этом каталоге у меня есть следующее:

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

log_watcher.service

[Install]
WantedBy=multi-user.target

[Unit]
Description=Log Watcher Service

[Service]
ExecStart=log_watcher.sh

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

Связанный контент