Linux shell chkconfig 命令
Linux shell chkconfig 命令用于检查,设置系统的各种服务。
这是 Red Hat
公司遵循 GPL
规则所开发的程序,它可查询操作系统在每一个执行等级中会执行哪些系统服务,其中包括各类常驻服务。
在最新的 CentOS 或 Ubuntu 推荐使用 systemctl 来管理服务。 不推荐使用 chkconfig
chkconfig 命令语法格式
chkconfig [--add][--del][--list][系统服务] 或 chkconfig [--level <等级代号>][系统服务][on/off/reset]
选项
- --add 增加所指定的系统服务,让chkconfig指令得以管理它,并同时在系统启动的叙述文件内增加相关数据。
- --del 删除所指定的系统服务,不再由chkconfig指令管理,并同时在系统启动的叙述文件内删除相关数据。
- --level<等级代号> 指定读系统服务要在哪一个执行等级中开启或关毕。
范例
列出 chkconfig
上的所有服务
[root@localhost shell]# chkconfig --list Note: This output shows SysV services only and does not include native systemd services. SysV configuration data might be overridden by native systemd configuration. If you want to list systemd services use 'systemctl list-unit-files'. To see services enabled on particular target use 'systemctl list-dependencies [target]'. netconsole 0:off 1:off 2:off 3:off 4:off 5:off 6:off network 0:off 1:off 2:on 3:on 4:on 5:on 6:off [root@localhost shell]#
开启服务
开启 telnet 服务
[root@localhost shell]# chkconfig telnet on [root@localhost shell]# chkconfig -list
关闭服务
[root@localhost shell]# chkconfig telnet off #关闭Telnet服务 [root@localhost shell]# chkconfig -list #列出chkconfig所知道的所有的服务的情况