Difference between revisions of "Systemd debian"
From Teknologisk videncenter
m |
m |
||
Line 15: | Line 15: | ||
# systemctl is-active [name.service] | # systemctl is-active [name.service] | ||
$ systemctl list-units --type service --all | $ systemctl list-units --type service --all | ||
+ | $systemctl show [name.service] | ||
</source> | </source> | ||
Revision as of 10:18, 13 February 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]
Links
- https://www.linux.com/training-tutorials/understanding-and-using-systemd/
- https://learning.oreilly.com/library/view/exploring-beaglebone-2nd/9781119533160/c15.xhtml (Godt eksempel)
- debian.org Create Service
- Eksempel på service lavet i PHP
- systemd services - noget dybere
- Video training - systemd i dybden