本文简单说明下 centos 6 与 centos 7 服务开机启动、关闭设置的方法:
centos 6:使用chkconfig命令即可。
我们以apache服务为例:
#chkconfig --add apache添加Nginx服务
#chkconfig apache on 开机自启Nginx服务
apacheoff 关闭开机自启
#chkconfig --list | grep apache查看
centos 7:使用systemctl中的enable、disable即可。示例:
#systemctl enable apache.service 开机自启apache服务
#systemctl disable apache.service 关闭开机自启