RHEL7 采用全新的 systemd 初始化进程服务,通过systemctl命令来管理服务。
systemctl 的常用命令
命令 | 作用 |
---|---|
systemctl start xxx | 启动服务 |
systemctl restart xxx | 重启服务 |
systemctl stop xxx | 停止服务 |
systemctl reloead xxx | 重新加载配置文件(不终止服务) |
system status xxx | 查看服务状态 |
systemctl enable xxx | 开机自动启动 |
systemctl disabled | 开机不自动启动 |
systemctlis-enable xxx | 查看服务是不是开机自启 |
systemctl list-unit-files --type=service | 查看各个级别下服务的启动与禁用情况 |