Difference between revisions of "Systemd debian"

From Teknologisk videncenter
Jump to: navigation, search
m
m
Line 17: Line 17:
 
$ systemctl show [name.service]
 
$ systemctl show [name.service]
 
</source>
 
</source>
 
+
=Writingt your own systemd services=
 +
*See [https://man7.org/linux/man-pages/man7/daemon.7.html man page daemon(7)]
 
=Links=
 
=Links=
 
*https://www.linux.com/training-tutorials/understanding-and-using-systemd/
 
*https://www.linux.com/training-tutorials/understanding-and-using-systemd/

Revision as of 06:06, 22 December 2022

  • Scriptfiles in /lib/systemd/system - See exampels of servicefiles there - add your own new system service:
...:~$ sudo systemd-analyze verify YOUR_SERVICEFILE
...:~$ sudo systemctl daemon-reload
...:~$ sudo systemctl enable YOUR_SERVICEFILE
...:~$ sudo systemctl YOUR_SERICEFILE

Often used

# systemctl start [name.service]
# systemctl stop [name.service]
# systemctl restart [name.service]
# systemctl reload [name.service]
$ systemctl status [name.service]
# systemctl is-active [name.service]
$ systemctl list-units --type service --all
$ systemctl show [name.service]

Writingt your own systemd services

Links