Estoy usando Linux. Tengo acceso a la raíz de mi usuario.
root@marais:~# pwd
/root
En este directorio tengo lo siguiente:
root@marais:~# ls
example.log log_watcher.service log_watcher.sh
log_watcher.servicio
[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"
Ejecuto lo siguiente:
systemctl enable log_watcher
Esto pareció funcionar correctamente, porque le había enviado un mensaje configurando enlaces simbólicos.
Ahora cuando intento iniciar el servicio:
systemctl start log_watcher
Parece que no sucede nada, es decir, log_watcher.sh
no se llama.
Entonces cuando obtengo el estado:
systemctl status log_watcher
Dice que log_watcher.sh
no se llama con una ruta absoluta.
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.
Cuando corro:
root@marais:~# readlink -f log_watcher.sh
/root/log_watcher.sh
Muestra que mi ruta absoluta es /root/
, y esta es la ruta que he definido en log_watcher.service
:
ExecStart=/root/log_watcher.sh
Pregunta
Por favor, ¿puede indicarme cómo puedo hacer que este servicio inicie y ejecute el archivo log_watcher.sh
.
Gracias
Respuesta1
En el archivo .service, necesitaba agregar /bin/bash
antes la ruta al script.
Por ejemplo, para servicio.copia de seguridad:
ExecStart=/bin/bash /root/log_watcher.sh