插件窝 干货文章 Linux服务管理与启动顺序调整

Linux服务管理与启动顺序调整

service 服务 启动 systemctl 46    来源:    2025-04-02

Linux服务管理与启动顺序调整

系统服务管理工具

1. Systemd (现代Linux发行版)

常用命令:

# 查看服务状态
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>

2. SysVinit (较旧系统)

常用命令:

# 启动服务
service <service> start

# 停止服务
service <service> stop

# 重启服务
service <service> restart

# 查看服务状态
service <service> status

# 启用开机自启
chkconfig <service> on

# 禁用开机自启
chkconfig <service> off

# 查看服务启动级别
chkconfig --list <service>

服务启动顺序调整

Systemd中的启动顺序控制

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

SysVinit中的启动顺序控制

/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

调试服务启动顺序

  1. 查看启动顺序图:

    systemd-analyze plot > boot.svg
    
  2. 分析启动时间:

    systemd-analyze
    systemd-analyze blame
    systemd-analyze critical-chain <service>
    
  3. 查看服务日志:

    journalctl -u <service> -b
    

最佳实践

  1. 优先使用systemd的覆盖机制而不是直接修改原始服务文件
  2. 复杂的依赖关系可以考虑创建target单元来组织
  3. 对于自定义服务,创建完整的单元文件而不是依赖启动脚本
  4. 使用systemd-analyze工具定期检查启动性能
  5. 在修改前备份相关配置文件

常见问题解决

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>)