Linux启动级别 以及 chkconfig详解

2024-02-12 19:58

本文主要是介绍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详解的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/703464

相关文章

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

linux-基础知识3

打包和压缩 zip 安装zip软件包 yum -y install zip unzip 压缩打包命令: zip -q -r -d -u 压缩包文件名 目录和文件名列表 -q:不显示命令执行过程-r:递归处理,打包各级子目录和文件-u:把文件增加/替换到压缩包中-d:从压缩包中删除指定的文件 解压:unzip 压缩包名 打包文件 把压缩包从服务器下载到本地 把压缩包上传到服务器(zip

MySQL数据库宕机,启动不起来,教你一招搞定!

作者介绍:老苏,10余年DBA工作运维经验,擅长Oracle、MySQL、PG、Mongodb数据库运维(如安装迁移,性能优化、故障应急处理等)公众号:老苏畅谈运维欢迎关注本人公众号,更多精彩与您分享。 MySQL数据库宕机,数据页损坏问题,启动不起来,该如何排查和解决,本文将为你说明具体的排查过程。 查看MySQL error日志 查看 MySQL error日志,排查哪个表(表空间

OpenHarmony鸿蒙开发( Beta5.0)无感配网详解

1、简介 无感配网是指在设备联网过程中无需输入热点相关账号信息,即可快速实现设备配网,是一种兼顾高效性、可靠性和安全性的配网方式。 2、配网原理 2.1 通信原理 手机和智能设备之间的信息传递,利用特有的NAN协议实现。利用手机和智能设备之间的WiFi 感知订阅、发布能力,实现了数字管家应用和设备之间的发现。在完成设备间的认证和响应后,即可发送相关配网数据。同时还支持与常规Sof

springboot3打包成war包,用tomcat8启动

1、在pom中,将打包类型改为war <packaging>war</packaging> 2、pom中排除SpringBoot内置的Tomcat容器并添加Tomcat依赖,用于编译和测试,         *依赖时一定设置 scope 为 provided (相当于 tomcat 依赖只在本地运行和测试的时候有效,         打包的时候会排除这个依赖)<scope>provided

Linux 网络编程 --- 应用层

一、自定义协议和序列化反序列化 代码: 序列化反序列化实现网络版本计算器 二、HTTP协议 1、谈两个简单的预备知识 https://www.baidu.com/ --- 域名 --- 域名解析 --- IP地址 http的端口号为80端口,https的端口号为443 url为统一资源定位符。CSDNhttps://mp.csdn.net/mp_blog/creation/editor

【Python编程】Linux创建虚拟环境并配置与notebook相连接

1.创建 使用 venv 创建虚拟环境。例如,在当前目录下创建一个名为 myenv 的虚拟环境: python3 -m venv myenv 2.激活 激活虚拟环境使其成为当前终端会话的活动环境。运行: source myenv/bin/activate 3.与notebook连接 在虚拟环境中,使用 pip 安装 Jupyter 和 ipykernel: pip instal

内核启动时减少log的方式

内核引导选项 内核引导选项大体上可以分为两类:一类与设备无关、另一类与设备有关。与设备有关的引导选项多如牛毛,需要你自己阅读内核中的相应驱动程序源码以获取其能够接受的引导选项。比如,如果你想知道可以向 AHA1542 SCSI 驱动程序传递哪些引导选项,那么就查看 drivers/scsi/aha1542.c 文件,一般在前面 100 行注释里就可以找到所接受的引导选项说明。大多数选项是通过"_

6.1.数据结构-c/c++堆详解下篇(堆排序,TopK问题)

上篇:6.1.数据结构-c/c++模拟实现堆上篇(向下,上调整算法,建堆,增删数据)-CSDN博客 本章重点 1.使用堆来完成堆排序 2.使用堆解决TopK问题 目录 一.堆排序 1.1 思路 1.2 代码 1.3 简单测试 二.TopK问题 2.1 思路(求最小): 2.2 C语言代码(手写堆) 2.3 C++代码(使用优先级队列 priority_queue)