systemctl管理服务状态

1. 一、systemctl管理服务的启动、重启、停止、重载、查看状态(RHEL 7)

systemctl命令 作用
systemctl start foo.service 启动服务
systemctl restart foo.service 重启服务
ststemctl stop foo.service 停止服务
systemctl reload foo.service 重新加载配置文件(不终止服务)
systemctl status foo.service 查看服务状态

2. 二、systemctl设置服务开机启动、不启动、查看各级别下的启动状态

systemctl命令 作用
systemctl enable foo.service 开机自启
systemctl disable foo.service 开机不自启
systemctl isenable foo.service 查看特定服务是否为开机自启
systemctl list-unit-files --type=service 查看各个级别下的服务的开机启动状态

注:服务后面的service可以省略。