Outils pour utilisateurs

Outils du site


kb:linux:generalites:creer_un_service_systemd_simple

Créer un service SystemD simple

SystemD a beaucoup trop d'option, voici un exemple avec beaucoup d'options communes

gitea.service
[Unit]
Description=Gitea (Git with a cup of tea)
After=syslog.target
After=network.target
After=mysql.service
 
[Service]
Type=simple
User=git
Group=git
SyslogIdentifier=gitea
WorkingDirectory=/opt/gitea/
ExecStart=/opt/gitea/gitea web
Restart=always
Environment=USER=git HOME=/home/git
 
[Install]
WantedBy=multi-user.target
kb/linux/generalites/creer_un_service_systemd_simple.txt · Dernière modification : 2019/09/23 18:37 de 127.0.0.1