¿Cómo crear un servicio personalizado que se iniciará automáticamente al arrancar en Archlinux?


10

Me gustaría ejecutar un comando simple al iniciar en Archlinux (systemd):

nohup fatrat -n &

Tengo esto trabajando en Debian:

#! /bin/sh
# /etc/init.d/fatratWS

### BEGIN INIT INFO
# Provides: fatratWS
# Required-Start: $network $local_fs $remote_fs
# Required-Stop: $network $local_fs $remote_fs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: fatratWS init script.
# Description: Starts and stops fatrat Web Server services.
### END INIT INFO

#VAR
FATRAT_PID=$(ps aux | awk '/fatrat --nogui/ && !/awk/ && !/nohup/ {print $2}')

# Carry out specific functions when asked to by the system
case "$1" in
start)
echo "Starting script fatratWS"
if [ -z "$FATRAT_PID" ]; then
nohup fatrat --nogui &
echo "Started"
else
echo "fatratWS already started"
fi
;;
stop)
echo "Stopping script fatratWS"
if [ ! -z "$FATRAT_PID" ]; then
kill $FATRAT_PID
fi
echo "OK"
;;
status)
if [ ! -z "$FATRAT_PID" ]; then
echo "The fatratWS is running with PID = "$FATRAT_PID
else
echo "No process found for fatratWS"
fi
;;
*)
echo "Usage: /etc/init.d/fatratWS {start|stop|status}"
exit 1
;;
esac

exit 0

¿Cómo puedo lograr lo mismo en Arch?

He intentado:

[Unit]
Description=Fatrat NoGui Web Access Service

[Service]
ExecStart=/usr/bin/nohup /usr/bin/fatrat -n &
Type=forking

[Install]
WantedBy=multi-user.target

Pero no se inicia cuando se inicia manualmente (tiempo de espera)

Respuestas:


14

Prueba esto:

[Unit]
Description=Fatrat NoGui Web Access Service
Requires=network.target
After=network.target

[Service]
ExecStart=/usr/bin/fatrat -n
Type=forking

[Install]
WantedBy=multi-user.target
  • Supuse que un "Servicio de acceso web" necesita red, así que agregué network.target como requisito.

  • El uso de nohup es innecesario porque esta funcionalidad la proporciona systemd, lo mismo para '&'.

  • Debido a que ya no usamos nohup, el tipo cambiaría a simple, sin embargo, la interfaz web disponible en el lanzamiento de git no funcionará a menos que la bifurquemos.

  • Para obtener más información sobre los archivos de servicio systemd, consulte la página de manual "systemd.service" y https://wiki.archlinux.org/index.php/Systemd#Writing_custom_.service_files

  • Puede considerar agregar Restart=alwaysa la [Service]sección para que se reinicie automáticamente si falla.

  • Coloque el archivo de servicio en /etc/systemd/system/fatrat.servicey habilítelo para el inicio automático a través desystemctl enable fatrat.service


Gracias, funciona! La única diferencia que tuve que hacer fue agregar User=my_user_nameen la [Service]sección para ejecutar la aplicación como mi usuario. De esta manera, la aplicación puede cargar sus archivos de configuración desde/home/my_user_name/.local/share/fatrat/data
Joudicek Jouda
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.