Linux的systemctl、service与chkconfig命令有什么区别

72次阅读
没有评论

共计 7263 个字符,预计需要花费 19 分钟才能阅读完成。

本篇内容介绍了“Linux 的 systemctl、service 与 chkconfig 命令有什么区别”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让丸趣 TV 小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

systemctl 和 service、chkconfig 命令的关系

systemctl 命令:是一个 systemd 工具,主要负责控制 systemd 系统和服务管理器。

service 命令:可以启动、停止、重新启动和关闭系统服务,还可以显示所有系统服务的当前状态。

chkconfig 命令:是管理系统服务 (service) 的命令行工具。所谓系统服务(service),就是随系统启动而启动,随系统关闭而关闭的程序。

systemctl 命令是系统服务管理器指令,它实际上将 service 和 chkconfig 这两个命令组合到一起。

systemctl 是 RHEL 7 的服务管理工具中主要的工具,它融合之前 service 和 chkconfig 的功能于一体。可以使用它永久性或只在当前会话中启用 / 禁用服务。

所以 systemctl 命令是 service 命令和 chkconfig 命令的集合和代替。

例如:使用 service 启动服务实际上也是调用 systemctl 命令。

[root@localhost ~]# service httpd start
Redirecting to /bin/systemctl start  httpd.service

systemctl 命令的用法 Systemctl 命令简介:

Systemctl 是一个 systemd 工具,主要负责控制 systemd 系统和服务管理器。

Systemd 是一个系统管理守护进程、工具和库的集合,用于取代 System V 初始进程。Systemd 的功能是用于集中管理和配置类 UNIX 系统。

systemd 即为 system daemon, 是 linux 下的一种 init 软件。

Systemctl 命令常见用法:

(1)列出所有可用单元:

[root@localhost ~]# systemctl list-unit-files 
UNIT FILE                                  STATE  
proc-sys-fs-binfmt_misc.automount          static  
dev-hugepages.mount                        static  
dev-mqueue.mount                           static  
proc-fs-nfsd.mount                         static  
proc-sys-fs-binfmt_misc.mount              static  
sys-fs-fuse-connections.mount              static  
sys-kernel-config.mount                    static  
sys-kernel-debug.mount                     static  
tmp.mount                                  disabled
var-lib-nfs-rpc_pipefs.mount               static  
brandbot.path                              disabled
cups.path                                  enabled

(2)列出所有可用单元:

[root@localhost ~]# systemctl list-units
 UNIT                      LOAD      ACTIVE SUB       DESCRIPTION
 proc-sys-fs-binfmt_misc.automount loaded    active waiting   Arbitrary
 sys-devices-pci0000:00-0000:00:10.0-host2-target2:0:0-2:0:0:0-block-sda
 sys-devices-pci0000:00-0000:00:10.0-host2-target2:0:0-2:0:0:0-block-sda
 sys-devices-pci0000:00-0000:00:10.0-host2-target2:0:0-2:0:0:0-block-sda
 sys-devices-pci0000:00-0000:00:10.0-host2-target2:0:1-2:0:1:0-block-sdb
 sys-devices-pci0000:00-0000:00:10.0-host2-target2:0:1-2:0:1:0-block-sdb
 sys-devices-pci0000:00-0000:00:11.0-0000:02:01.0-net-ens33.device loade
 sys-devices-pci0000:00-0000:00:11.0-0000:02:02.0-sound-card0.device lo
..............

(3)列出所有失败单元:

[root@localhost ~]# systemctl --failed 
 UNIT                LOAD   ACTIVE SUB    DESCRIPTION
● network.service     loaded failed failed LSB: Bring up/down networking
● teamd@team0.service loaded failed failed Team Daemon for device team0

LOAD   = Reflects whether the unit definition was properly loaded.
ACTIVE = The high-level unit activation state, i.e. generalization of SUB
SUB    = The low-level unit activation state, values depend on unit type.

2 loaded units listed. Pass --all to see loaded but inactive units, too.
To show all installed unit files use systemctl list-unit-files .

(4)检查某个单元是否启动:

[root@localhost ~]# systemctl is-enabled httpd.service 
enabled

(5)检查某个服务的运行状态:

[root@localhost ~]# systemctl status httpd.service     
● httpd.service - The Apache HTTP Server
  Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
  Active: active (running) since 日 2018-10-14 18:21:46 CST; 1 day 2h ago
    Docs: man:httpd(8)
          man:apachectl(8)
Main PID: 19020 (httpd)
  Status: Total requests: 0; Current requests/sec: 0; Current traffic:   0 B/sec
  CGroup: /system.slice/httpd.service
          ├─19020 /usr/sbin/httpd -DFOREGROUND
          ├─27310 /usr/sbin/httpd -DFOREGROUND
          ├─27311 /usr/sbin/httpd -DFOREGROUND
          ├─27312 /usr/sbin/httpd -DFOREGROUND
          ├─27313 /usr/sbin/httpd -DFOREGROUND
          └─27314 /usr/sbin/httpd -DFOREGROUND

10 月 14 18:21:46 localhost systemd[1]: Starting The Apache HTTP Serv....
10 月 14 18:21:46 localhost httpd[19020]: AH00558: httpd: Could not r...e

(6)列出所有服务:

[root@localhost ~]# systemctl list-unit-files --type=service
UNIT FILE                                  STATE  
abrt-ccpp.service                          enabled
abrt-oops.service                          enabled
abrt-pstoreoops.service                    disabled
abrt-xorg.service                          enabled
abrtd.service                              enabled
accounts-daemon.service                    enabled
alsa-restore.service                       static  
alsa-state.service                         static  
alsa-store.service                         static  
arp-ethers.service                         disabled
atd.service                                disabled
auditd.service                             enabled
auth-rpcgss-module.service                 static

(7)启动,停止,重启服务等:

[root@localhost ~]# systemctl restart httpd.service
# systemctl restart httpd.service
# systemctl stop httpd.service
# systemctl reload httpd.service
# systemctl status httpd.service

(8)查询服务是否激活,和配置是否开机启动:

[root@localhost ~]# systemctl is-active httpd
active
[root@localhost ~]# systemctl disable httpd
Removed symlink /etc/systemd/system/multi-user.target.wants/httpd.service.
[root@localhost ~]# systemctl enable httpd
Created symlink from /etc/systemd/system/multi-user.target.wants/httpd.service to /usr/lib/systemd/system/httpd.service.

(9)使用 systemctl 命令杀死服务:

[root@localhost ~]# systemctl kill httpd

(10)列出系统的各项服务,挂载,设备等:

[root@localhost ~]# systemctl list-unit-files --type 
automount  device     path       snapshot   swap       timer
busname    mount      service    socket     target

(11)获得系统默认启动级别和设置默认启动级别:

[root@localhost ~]# systemctl get-default 
graphical.target
[root@localhost ~]# systemctl set-default multi-user.target

(12)启动运行等级:

systemctl isolate multiuser.target

(13)重启、停止,挂起、休眠系统等:

# systemctl reboot
# systemctl halt
# systemctl suspend
# systemctl hibernate
# systemctl hybrid-sleep

Service 命令用法

service 命令可以启动、停止、重新启动和关闭系统服务,还可以显示所有系统服务的当前状态。

service 命令的作用是去 /etc/init.d 目录下寻找相应的服务,进行开启和关闭等操作。

使用示例:

开启关闭一个服务:service  httpd  start/stop

[root@localhost ~]# service httpd start
Redirecting to /bin/systemctl start  httpd.service

查看系统服务的状态:service –status-all

[root@localhost ~]# service --status-all
未加载 netconsole 模块
已配置设备:
lo ens33 ens33.old team0 team0-port1 team0-port1.old team0-port2 team0-port2.old team0.old
当前活跃设备:
lo ens33 virbr0 ens38 ens39 team0
● rhnsd.service - LSB: Starts the Spacewalk Daemon
  Loaded: loaded (/etc/rc.d/init.d/rhnsd; bad; vendor preset: disabled)
  Active: active (running) since 五 2018-10-12 14:53:19 CST; 3 days ago
    Docs: man:systemd-sysv-generator(8)
Main PID: 1380 (rhnsd)
  CGroup: /system.slice/rhnsd.service
          └─1380 rhnsd

chkconfig 命令用法

chkconfig 是管理系统服务 (service) 的命令行工具。所谓系统服务(service),就是随系统启动而启动,随系统关闭而关闭的程序。

chkconfig 可以更新 (启动或停止) 和查询系统服务 (service) 运行级信息。更简单一点,chkconfig 是一个用于维护 /etc/rc[0-6].d 目录的命令行工具。

chkconfig 常见用法:

[root@localhost ~]# chkconfig  --help
chkconfig 版本 1.7.2 - 版权 (C) 1997-2000 红帽公司
在 GNU 公共许可条款下,本软件可以自由重发行。

用法:  chkconfig [--list] [--type 类型] [名称]
        chkconfig --add 名称
        chkconfig --del 名称
        chkconfig --override 名称
        chkconfig [--level 级别] [--type 类型] 名称 on|off|reset|resetpriorities

(一)设置 service 开机是否启动:

chkconfig name on/off/reset

on、off、reset 用于改变 service 的启动信息。

on 表示开启,off 表示关闭,reset 表示重置。

默认情况下,on 和 off 开关只对运行级 2,3,4,5 有效,reset 可以对所有运行级有效。

[root@localhost ~]# chkconfig httpd on
注意:正在将请求转发到“systemctl enable httpd.service”。

在 Redhat7 上,运行 chkconfig 命令,都会被转到 systemcle 命令上。

(2)设置 service 运行级别:

chkconfig --level levels

该命令可以用来指定服务的运行级别,即指定运行级别 2,3,4,5 等。

等级 0 表示:表示关机

等级 1 表示:单用户模式

等级 2 表示:无网络连接的多用户命令行模式

等级 3 表示:有网络连接的多用户命令行模式

等级 4 表示:不可用

等级 5 表示:带图形界面的多用户模式

等级 6 表示:重新启动

例如:

[root@localhost ~]# chkconfig --level 5 httpd on
注意:正在将请求转发到“systemctl enable httpd.service”

(三)列出 service 启动信息:

# chkconfig --list [name]

如果不指定 name,会列出所有 services 的信息。

每个 service 每个运行级别都会有一个启动和停止脚本;当切换运行级别时,init 不会重启已经启动的 service,也不会重新停止已经停止的 service。

例如:

[root@localhost ~]# chkconfig --list

注意:该输出结果只显示 SysV 服务,并不包含原生 systemd 服务。SysV 配置数据可能被原生 systemd 配置覆盖。
      如果您想列出 systemd 服务, 请执行 systemctl list-unit-files。
      欲查看对特定 target 启用的服务请执行
      systemctl list-dependencies [target]。

netconsole      0: 关    1: 关    2: 关    3: 关    4: 关    5: 关    6: 关
network         0: 关    1: 关    2: 开    3: 开    4: 开    5: 开    6: 关
rhnsd           0: 关    1: 关    2: 开    3: 开    4: 开    5: 开    6: 关

总结:service 命令的功能基本都被 systemct 取代。直接使用 systemctl 命令即可。

“Linux 的 systemctl、service 与 chkconfig 命令有什么区别”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注丸趣 TV 网站,丸趣 TV 小编将为大家输出更多高质量的实用文章!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-07-12发表,共计7263字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)