CentOS 7及以上版本使用systemd作为默认的init系统,取代了传统的SysVinit。systemd提供更快的启动速度、更好的并行处理能力和更强大的服务管理功能。
# 启动服务
sudo systemctl start service_name
# 停止服务
sudo systemctl stop service_name
# 重启服务
sudo systemctl restart service_name
# 重新加载配置(不重启服务)
sudo systemctl reload service_name
# 查看服务状态
sudo systemctl status service_name
# 启用开机自启动
sudo systemctl enable service_name
# 禁用开机自启动
sudo systemctl disable service_name
# 查看服务是否开机启动
sudo systemctl is-enabled service_name
# 列出所有已加载的服务单元
sudo systemctl list-units --type=service
# 列出所有服务(包括未加载的)
sudo systemctl list-unit-files --type=service
# 查看系统启动耗时
systemd-analyze
# 查看每个服务的启动耗时
systemd-analyze blame
# 生成启动过程可视化图表
systemd-analyze plot > bootplot.svg
对于非关键服务,可以配置为延迟启动以减少初始启动时间:
# 编辑服务单元文件
sudo systemctl edit service_name
# 添加以下内容
[Service]
ExecStartPre=/bin/sleep 10 # 延迟10秒启动
或使用更专业的依赖关系管理:
[Unit]
After=network.target # 在网络就绪后启动
systemd默认已启用并行启动,但可以通过以下方式进一步优化:
# 查看服务依赖关系
systemd-analyze critical-chain service_name
# 减少不必要的依赖关系
# 编辑服务单元文件,移除不必要的After/Before/Wants等指令
/usr/lib/systemd/system/
/etc/systemd/system/
# 创建自定义服务
sudo vi /etc/systemd/system/myapp.service
# 内容示例
[Unit]
Description=My Custom Application
After=network.target
[Service]
Type=simple
ExecStart=/usr/local/bin/myapp
Restart=on-failure
RestartSec=5s
User=myappuser
Group=myappgroup
[Install]
WantedBy=multi-user.target
Type:
Restart:
# 创建定时器单元文件
sudo vi /etc/systemd/system/mytimer.timer
[Unit]
Description=Run my job daily
[Timer]
OnCalendar=daily
Persistent=true
[Install]
WantedBy=timers.target
# 创建对应的服务单元文件
sudo vi /etc/systemd/system/mytimer.service
[Unit]
Description=My Daily Job
[Service]
Type=oneshot
ExecStart=/path/to/script.sh
# 在服务单元文件中添加资源限制
[Service]
MemoryLimit=512M
CPUQuota=50%
# 查看特定服务的日志
journalctl -u service_name
# 查看实时日志
journalctl -u service_name -f
# 按时间筛选
journalctl -u service_name --since "2023-01-01" --until "2023-01-02"
# 限制日志大小
# 编辑/etc/systemd/journald.conf
SystemMaxUse=100M
服务启动失败:
# 查看详细错误信息
sudo systemctl status service_name
journalctl -xe
依赖问题:
# 查看服务依赖关系
systemd-analyze dot service_name | dot -Tsvg > deps.svg
# 重置失败状态
sudo systemctl reset-failed service_name
修改服务单元文件后需要执行:
sudo systemctl daemon-reload
# 禁用不必要服务示例
sudo systemctl disable bluetooth.service
sudo systemctl disable cups.service
通过以上优化措施,可以显著提高CentOS系统的启动速度和服务管理效率,同时确保系统稳定性和安全性。