chkconfig
命令可以给服务的各个运行级别设置自 启动/关闭chkconfig
指令管理的服务在 /etc/init.d
查看
Centos7.0
后,很多服务使用 systemctl
管理
chkconfig
基本语法
chkconfig --list [| grep xxx]
chkconfig 服务名 --list
chkconfig --level 5 服务名 on/off
network
服务 进行各种操作, 把 network
在 3
运行级别,关闭自启动chkconfig --level 3 network off // 关闭
chkconfig --level 3 network on // 开启
chkconfig
重新设置服务后自启动或关闭,需要重启机器 reboot
生效.