常用命令:
# 查看服务状态
systemctl status <service>
# 启动服务
systemctl start <service>
# 停止服务
systemctl stop <service>
# 重启服务
systemctl restart <service>
# 启用开机自启
systemctl enable <service>
# 禁用开机自启
systemctl disable <service>
# 查看所有服务
systemctl list-units --type=service
# 查看服务依赖关系
systemctl list-dependencies <service>
常用命令:
# 启动服务
service <service> start
# 停止服务
service <service> stop
# 重启服务
service <service> restart
# 查看服务状态
service <service> status
# 启用开机自启
chkconfig <service> on
# 禁用开机自启
chkconfig <service> off
# 查看服务启动级别
chkconfig --list <service>
1. 使用After/Before指令
编辑服务单元文件(/etc/systemd/system/<service>.service
或/lib/systemd/system/<service>.service
):
[Unit]
Description=My Service
After=network.target mysql.service
Before=some-other.service
2. 使用Requires/Wants指令
[Unit]
Requires=postgresql.service
Wants=redis.service
3. 创建覆盖文件(推荐)
sudo systemctl edit <service>
这会创建一个覆盖文件在/etc/systemd/system/<service>.service.d/override.conf
在/etc/init.d/
目录下的脚本中修改### BEGIN INIT INFO
部分:
### BEGIN INIT INFO
# Provides: my-service
# Required-Start: $network $remote_fs $syslog
# Required-Stop: $network $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: My custom service
# Description: My custom service description
### END INIT INFO
然后更新启动顺序:
update-rc.d <service> defaults
查看启动顺序图:
systemd-analyze plot > boot.svg
分析启动时间:
systemd-analyze
systemd-analyze blame
systemd-analyze critical-chain <service>
查看服务日志:
journalctl -u <service> -b
systemd
的覆盖机制而不是直接修改原始服务文件target
单元来组织systemd-analyze
工具定期检查启动性能Q: 服务启动失败,如何查看原因?
A: 使用journalctl -u <service> -b
查看服务日志
Q: 如何强制一个服务在其他服务之前启动?
A: 在服务单元文件中添加Before=<other-service>
指令
Q: 如何创建一个仅在特定服务启动后才运行的服务?
A: 使用After=<prerequisite-service>
和Requires=<prerequisite-service>
指令
Q: 如何临时禁用某个服务而不卸载它?
A: 使用systemctl mask <service>
(要恢复使用systemctl unmask <service>
)