1 分析服务器启动性能

#查看服务器启动时间
systemd-analyze time
#查看所有进程开机时占用时间
systemd-analyze blame

2 ctl命令

systemctl
timedatectl
localectl
loginctl

3 日志管理

#逆序显示日志
journalctl -r
#查看启动日志
journalctl -b
#查看某个单元的日志
journalctl -u mariadb.service
#查看某个时间段日志
journalctl -S 2024-08-26 -U 2024-08-27
journalctl --since="2024-08-26 08:00:00" --until="2024-08-27 00:00:00"