chkconfig基本语法
程序员文章站
2022-07-12 13:41:01
...
Chkconfig 基本语法
chkconfig (功能描述:查看所有服务器自启配置)
chkconfig 服务名 off (功能描述:关掉指定服务的自动启动)
chkconfig 服务名 on (功能描述:开启指定服务的自动启动)
chkconfig 服务名 --list (功能描述:查看服务开机启动状态)
eg:
(1) 关闭iptables服务的自动启动
[[email protected] 桌面]#chkconfig iptables off
(2) 开启iptables服务的自动启动
[[email protected] 桌面]#chkconfig iptables on