Two additional commands I regularly use as a Sysadmin are
systemctl status without any unit to list show the general system status (lists units that are running, units that are starting and failed units right at the top)
And then
systemctl list-units --failed
To show me just the failed units and did deeper what the problem is.
On a properly set up system I should quickly be able to ascertain if everything is “up and running” just by systemds status
Two additional commands I regularly use as a Sysadmin are
systemctl status
without any unit to list show the general system status (lists units that are running, units that are starting and failed units right at the top) And thensystemctl list-units --failed
To show me just the failed units and did deeper what the problem is.On a properly set up system I should quickly be able to ascertain if everything is “up and running” just by systemds status
You can also use
systemctl status $pid
to find out what service a process is from.This and
systemctl cat $unit
are my favorites.You can … WHAT!?
Wow I did not know that. Incredibly helpful
Oooh. Thank you, I didn’t know that.
You can skip
list-units
and just dosystemctl --failed
You can even drop the
list-units
and just usesystemctl --failed
Didn’t know that. Thanks!