欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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