`
suliuyes
  • 浏览: 92264 次
  • 性别: Icon_minigender_1
  • 来自: 成都
文章分类
社区版块
存档分类
最新评论

Linux启动级别 以及 chkconfig详解

 
阅读更多

一、启动级别

 

1、查看linux 系统默认启动级别

cat /etc/inittab 

id:3:initdefault: ##可以看出默认为三

 

2、查看某一服务在各个启动级别上是否启动

[root@localhost ~]# chkconfig --list  nfs

nfs             0:off   1:off   2:off   3:off   4:off   5:off   6:off

 

3、在Linux中有7种启动级别

分别为: 

#   0 - halt (Do NOT set initdefault to this) 

#   1 - Single user mode 

#   2 - Multiuser, without NFS (The same as 3, if you do not have networking) 

#   3 - Full multiuser mode 

#   4 - unused 

#   5 - X11 

#   6 - reboot (Do NOT set initdefault to this) 

各个运行级的详细解释: 

0 为停机,机器关闭。 

1 为单用户模式,就像Win9x下的安全模式类似。 

2 为多用户模式,但是没有NFS支持。 

3 为完整的多用户模式,是标准的运行级。 

4 一般不用,在一些特殊情况下可以用它来做一些事情。例如在笔记本电脑的电池用尽时,可以切换到这个模式来做一些设置。 

5 就是X11,进到X Window系统了。 

6 为重启,运行init 6机器就会重启。 

 

0和6一般不用; 

 

 

二、 chkconfig

 

说明 :linux 的所有服务都在 /etc/init.d/  下, 但是 /etc/init.d  是 链接的 /etc/rc.d/init.d

       同样 /etc/rc[0-6].d 都是连接的相应的 /etc/rc.d/rc[0-6].d ,不同启动级别的 rc[0-6].d 中的服务都是 链接的 /etc/init.d 下的相应服务

 

 

1、chkconfig命令主要用来更新(启动或停止)和查询系统服务的运行级信息。谨记chkconfig不是立即自动禁止或激活一个服务,它只是简单的改变了符号连接。

  语法:

    chkconfig --list [name]

    chkconfig --add name

    chkconfig --del name

    chkconfig [--level levels] name <on|off|reset>

    chkconfig [--level levels] name

 

    chkconfig 没有参数运行时,显示用法。如果加上服务名,那么就检查这个服务是否在当前运行级启动。如果是,返回true,否则返回false。如果在服务名后面指定了on,off或者reset,那么chkconfi 会改变指定服务的启动信息。on和off分别指服务被启动和停止,reset指重置服务的启动信息,无论有问题的初始化脚本指定了什么。on和off开关,系统默认只对运行级2,3,4,5有效,但是reset可以对所有运行级有效。

    --level选项可以指定要查看的运行级而不一定是当前运行级。

    需要说明的是,对于每个运行级,只能有一个启动脚本或者停止脚本。当切换运行级时,init不会重新启动已经启动的服务,也不会再次去停止已经停止的服务。

 

2、 chkconfig --list :显示所有运行级系统服务的运行状态信息(on或off)。如果指定了name,那么只显示指定的服务在不同运行级的状态。

 

    chkconfig --add name:增加一项新的服务。chkconfig确保每个运行级有一项启动(S)或者杀死(K)入口。如有缺少,则会从缺省的init脚本自动建立。

 

    chkconfig --del name:删除服务,并把相关符号连接从/etc/rc[0-6].d删除。

 

    chkconfig [--level levels] name <on|off|reset>:设置某一服务在指定的运行级是被启动,停止还是重置。例如,要在3,4,5运行级停止nfs服务,则命令如下:

    chkconfig --level 345 nfs off

 

3、举例sendmail:

 

1)cat /etc/inittab

id:3:initdefault: 

 

2)chkconfig --list  sendmail

sendmail        0:off   1:off   2:on    3:on    4:on    5:on    6:off

查看连接 :

ll /etc/rc0.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov  5 23:43 K30sendmail -> ../init.d/sendmail

ll /etc/rc1.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov  5 23:43 K30sendmail -> ../init.d/sendmail

ll  /etc/rc2.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov  5 23:43 S80sendmail -> ../init.d/sendmail

ll /etc/rc3.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov  5 23:43 S80sendmail -> ../init.d/sendmail 

ll /etc/rc4.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov  5 23:43 S80sendmail -> ../init.d/sendmail

ll /etc/rc5.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov  5 23:43 S80sendmail -> ../init.d/sendmail

 ll /etc/rc6.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov  5 23:43 K30sendmail -> ../init.d/sendmail

 

3)chkconfig --del  sendmail

   [root@localhost init.d]# chkconfig --list  sendmail

service sendmail supports chkconfig, but is not referenced in any runlevel (run 'chkconfig --add sendmail')

查看连接

[root@localhost init.d]# ll /etc/rc0.d/ |grep sendmail

[root@localhost init.d]# ll /etc/rc0.d/ |grep sendmail

[root@localhost init.d]# ll /etc/rc1.d/ |grep sendmail

[root@localhost init.d]# ll /etc/rc2.d/ |grep sendmail

[root@localhost init.d]# ll /etc/rc3.d/ |grep sendmail

[root@localhost init.d]# ll /etc/rc4.d/ |grep sendmail

[root@localhost init.d]# ll /etc/rc5.d/ |grep sendmail

[root@localhost init.d]# ll /etc/rc6.d/ |grep sendmail

[root@localhost init.d]#  ---》 全为空

 

4)

[root@localhost init.d]# chkconfig --add  sendmail

[root@localhost init.d]# chkconfig --list  sendmail

sendmail        0:off   1:off   2:on    3:on    4:on    5:on    6:off

 

查看连接:

[root@localhost init.d]# ll /etc/rc0.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:33 K30sendmail -> ../init.d/sendmail

[root@localhost init.d]# ll /etc/rc1.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:33 K30sendmail -> ../init.d/sendmail

[root@localhost init.d]# ll /etc/rc2.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:33 S80sendmail -> ../init.d/sendmail

[root@localhost init.d]# ll /etc/rc3.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:33 S80sendmail -> ../init.d/sendmail

[root@localhost init.d]# ll /etc/rc4.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:33 S80sendmail -> ../init.d/sendmail

[root@localhost init.d]# ll /etc/rc5.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:33 S80sendmail -> ../init.d/sendmail

[root@localhost init.d]# ll /etc/rc6.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:33 K30sendmail -> ../init.d/sendmail  ----》 相应的服务连接又回来了 

 

5)chkconfig   sendmail  off  --》on和off分别指服务被启动和停止,reset指重置服务的启动信息,无论有问题的初始化脚本指定了什么。on和off开关,系统                                  默认只对运行级3,4,5有效,但是reset可以对所有运行级有效

[root@localhost init.d]# chkconfig --list  sendmail

sendmail        0:off   1:off   2:off   3:off   4:off   5:off   6:off

 

查看连接:

[root@localhost init.d]# ll /etc/rc0.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:33 K30sendmail -> ../init.d/sendmail

[root@localhost init.d]# ll /etc/rc1.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:33 K30sendmail -> ../init.d/sendmail

[root@localhost init.d]# ll /etc/rc2.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:36 K30sendmail -> ../init.d/sendmail

[root@localhost init.d]# ll /etc/rc3.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:36 K30sendmail -> ../init.d/sendmail

[root@localhost init.d]# ll /etc/rc4.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:36 K30sendmail -> ../init.d/sendmail

[root@localhost init.d]# ll /etc/rc5.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:36 K30sendmail -> ../init.d/sendmail

[root@localhost init.d]# ll /etc/rc6.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:33 K30sendmail -> ../init.d/sendmail  ---》全是 "K"

 

6)chkconfig   sendmail  on 

[root@localhost init.d]# chkconfig --list  sendmail

sendmail        0:off   1:off   2:on    3:on    4:on    5:on    6:off

 

查看连接:

[root@localhost init.d]# ll /etc/rc0.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:33 K30sendmail -> ../init.d/sendmail

[root@localhost init.d]# ll /etc/rc1.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:33 K30sendmail -> ../init.d/sendmail

[root@localhost init.d]# ll /etc/rc2.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:40 S80sendmail -> ../init.d/sendmail

[root@localhost init.d]# ll /etc/rc3.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:40 S80sendmail -> ../init.d/sendmail

[root@localhost init.d]# ll /etc/rc4.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:40 S80sendmail -> ../init.d/sendmail

[root@localhost init.d]# ll /etc/rc5.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:40 S80sendmail -> ../init.d/sendmail

[root@localhost init.d]# ll /etc/rc6.d/ |grep sendmail

lrwxrwxrwx 1 root root 18 Nov 10 23:33 K30sendmail -> ../init.d/sendmail  --》2,3,4,5 为“S” 其他为 K

 

7)

chkconfig   sendmail  off 

[root@localhost init.d]# chkconfig --list  sendmail

sendmail        0:off   1:off   2:off   3:off   4:off   5:off   6:off

[root@localhost init.d]# chkconfig --level 3  sendmail  on

[root@localhost init.d]# chkconfig --list  sendmail

sendmail        0:off   1:off   2:off   3:on    4:off   5:off   6:off

[root@localhost init.d]# chkconfig --level 0  sendmail  on

[root@localhost init.d]# chkconfig --list  sendmail

sendmail        0:on    1:off   2:off   3:on    4:off   5:off   6:off  --》 看来 得用level on 参数控制 0级别

 

[root@localhost init.d]# chkconfig   sendmail  off 

[root@localhost init.d]# chkconfig --list  sendmail

sendmail        0:on    1:off   2:off   3:off   4:off   5:off   6:off  --》 但是这样3 级别关了 0 级别没关掉

 

[root@localhost init.d]# chkconfig --level 0  sendmail  off

[root@localhost init.d]# chkconfig --list  sendmail

sendmail        0:off   1:off   2:off   3:off   4:off   5:off   6:off  --》 0 级别关掉了 (经验证1,6级别 也是这样的和0级别一样 得用level控制) 

 

8)

[root@localhost init.d]# chkconfig   sendmail  off 

[root@localhost init.d]# chkconfig --list  sendmail

sendmail        0:off   1:off   2:off   3:off   4:off   5:off   6:off

[root@localhost init.d]# chkconfig   sendmail  reset

[root@localhost init.d]# chkconfig --list  sendmail

sendmail        0:off   1:off   2:on    3:on    4:on    5:on    6:off --》 reset指重置服务的启动信息 可以对所有运行级有效 (没太懂这个东西reset)


分享到:
评论

相关推荐

    Linux启动运行级别&chkconfig&crontab.pdf

    Linux启动运行级别&chkconfig&crontab.pdf

    Linux下chkconfig命令详解.docx

    Linux下chkconfig命令详解.docx

    Linux 添加系统服务、设置开机启动、设置启动顺序、chkconfig.docx

    文档是我自己亲自整理的文档,详细介绍了 chkconfig 命令,使用该命令再进行配置Linux的服务和启动服务

    Linux下的chkconfig命令详解

    Linux下的chkconfig命令主要用来更新(启动或停止)和查询系统服务的运行级信息。谨记chkconfig不是立即自动禁止或激活一个服务,它只是简单的改变了符号连接。 使用语法 chkconfig [–add][–del][–list][系统...

    linux中chkconfig 启动程序顺序.docx

    linux中chkconfig 启动程序顺序.docx

    chkconfig命令详解

    chkconfig命令详解

    Linux chkconfig命令用法详解

    Linux chkconfig命令 ...–add 增加所指定的系统服务,让chkconfig指令得以管理它,并同时在系统启动的叙述文件内增加相关数据。 –del 删除所指定的系统服务,不再由chkconfig指令管理,并同时在系

    linux命令详解之chkconfig命令使用方法

    使用语法:chkconfig[–add][–del][–list][系统服务] 或chkconfig[–level &lt; 等级代号&gt;][系统服务][on/off/reset] chkconfig在没有参数运行时,显示用法。如果加上服务名,那么就检查这个服务是否在当前运行级...

    Linux下面开起启动服务命令(chkconfig、ntsysv).docx

    Linux下面开起启动服务命令(chkconfig、ntsysv).docx

    大数据课程体系.pdf

    Linux 启动流程,运行级别详解,chkconfig 详解 nano 编辑器 Linux 权限管理:用户、组 Linux 权限管理:文件权限 rwx Linux 网络管理:hosts,hostname,ifconfig 安装 JDK Hadoop Hadoop 介绍,发展史,国内外现状...

    Linux攻略之如何修改系统的服务启动和停止

    Linux给我们提供了7中不同的启动级别0~6,那么不同的启动级别都会启动那些服务哪。本文介绍了可以使用chkconfig --list 查看,可以使用chkconfig服务名--level 3 {on|of}修改是否要再某个级别启动或停止。

    Linux系统的Oracle 11g自启动配置-BYDMG

    Linux下安装Oracle 11g 设置开机自启动,使用chkconfig --add来进行配置才是规范的做法,这个文档是我按规范配置的生产系统。 我的Linux版本是Redhat Linux Enterprise 6.3 x64。

    Ubuntu上支持chkconfig命令

    现在ubuntu上,默认是不支持chkconfig命令的,但支持自己安装,需要自己去下载对应的安装包。 方法:在存放该文件的目录下执行:dpkg -i chkconfig_11.0-79.1-1ubuntu1_all.deb

    Linux配置nginx自启动

    Linux配置Nginx服务开机自启动(centos7.*配置方式不同),脚本中‘nginx=‘和‘NGINX_CONF_FILE=’后面的*****替换成自己的nginx安装路径。把脚本复制到init.d/目录下,添加chkconfig --add nginx即可。注意脚本的...

    linux_启动脚本次序.doc

    1、启动对应运行级别的守护进程  在rc.sysinit执行后,将返回init继续其它的动作,通常接下来会执行到/etc/rc.d/rc程序。以运行级别3为例,init将执行配置文件inittab中的以下这行:  l5:5:wait:/etc/rc.d/rc 5 ...

    ubuntu安装chkconfig

    ubuntu安装chkconfig 1.Update the package index: # sudo apt-get update 2.Install chkconfig deb package: # sudo apt-get install chkconfig

    Linux chkconfig 命令的使用

    主要介绍了Linux chkconfig 命令的使用,帮助大家更好的理解和学习,感兴趣的朋友可以了解下

    linux系统中使用shell脚本自启动tomcat

    linux系统中使用shell脚本自启动tomcat 在/etc/init.d下新建文件tomcat 命令:vi /etc/init.d/tomcat tomcat文件新建完毕后,检查文件格式是否为unix,如果格式为dos,需要先将文件格式切换成Unix 强制切换为unix...

Global site tag (gtag.js) - Google Analytics