NingG +

Linux命令:chkconfig

(未完成整理)

关注几个小问题:

chkconfig

通过man查询chkconfig的基本用法:

chkconfig [--list] [--type type][name]
chkconfig --add name
chkconfig --del name
chkconfig --override name
chkconfig [--level levels] [--type type] name <on|off|reset|resetpriorities>
chkconfig [--level levels] [--type type] name

列举几个例子:

# 添加服务jmxtrans
chkconfig --add jmxtrans

# 设置服务jmxtrans启动级别
chkconfig --level 2345 jmxtrans on

系统服务runlevel

(doing…)

系统的runlevel到底什么用途?什么含义?

# 查看当前系统的运行级别
runlevel

# 查看当前系统运行级别
who -r

下面草草列一点别人的总结:

首先了解linux的运行级别有哪些?6个运行级别:

# 0 - 停机(千万不要把initdefault设置为0 )
# 1 - 单用户模式
# 2 - 多用户,但是没有NFS
# 3 - 完全多用户模式
# 4 - 没有用到
# 5 - X11
# 6 - 重新启动(千万不要把initdefault设置为6 )

对各个运行级的详细解释:

每次系统开机的时候,都会根据不同的runlevel级别启动不同的服务。运行chkconfig --list可以查看所有服务在不同运行级别下的启动状况。

疑问:几个疑问,写一下:

特别说明:Linux下的run level很重要,要分析其产生原因、使用方式。

Linux下系统服务的含义?

(doing…)

(可以单独开一篇文章)

鸟哥私房菜(第三版)–第18章 认识系统服务(deamons)

参考来源

原文地址:https://ningg.top/linux-cmd-chkconfig/
微信公众号 ningg, 联系我

同类文章:

微信搜索: 公众号 ningg, 联系我, 交个朋友.

Top