Systemd – Pfad ist nicht absolut – kann nicht ausgeführt werden

Systemd – Pfad ist nicht absolut – kann nicht ausgeführt werden

Ich verwende Linux. Ich habe als Benutzer Rootzugriff.

root@marais:~# pwd
/root

In diesem Verzeichnis habe ich folgendes:

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

log_watcher.dienst

[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"

Ich führe Folgendes aus:

systemctl enable log_watcher

Dies schien erfolgreich zu funktionieren, da ich eine Meldung über die Einrichtung symbolischer Links erhalten hatte.

Wenn ich jetzt versuche, den Dienst zu starten:

systemctl start log_watcher

Es scheint nichts zu passieren, d. h. es log_watcher.shwird nicht aufgerufen.

Wenn ich also den Status erhalte:

systemctl status log_watcher

Es besagt, dass der log_watcher.shAufruf nicht mit einem absoluten Pfad erfolgt.

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.

Wenn ich laufe:

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

Es zeigt, dass mein absoluter Pfad ist /root/, und dies ist der Pfad, den ich in definiert habe log_watcher.service:

ExecStart=/root/log_watcher.sh

Frage

Können Sie mir bitte sagen, wie ich diesen Dienst starten und ausführen kann log_watcher.sh?

Danke

Antwort1

In der Servicedatei musste ich /bin/bashvor dem Pfad zum Skript hinzufügen.

Beispielsweise für Backup.Service:

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

verwandte Informationen