乐趣区

关于运维:使用Systemctl命令来管理系统服务

Systemctl 是 systemd 用于管理系统和治理服务的工具。许多古代 Linux 发行版,如 Ubuntu、Debian、Fedora、Linux Mint、OpenSuSE、Redhat 都采纳 systemd 作为默认的 init 零碎。
应用 systemctl,能够启动、进行、从新加载、重启服务、列出服务单元、查看服务状态、启用 / 禁用服务、治理运行级别和电源治理。在本文中将展现如何在 Linux 中应用 systemctl 命令来治理 systemd 服务。

应用 systemctl 命令 Start/Stop/Restart/Reload 服务
应用 systemctl 启动服务时,命令格局:systemctl start [service-name]。例如,启动 firewalld 服务:

[root@localhost ~]# systemctl start firewalld
与以前老版本的 linux 中的 service 命令相同,systemctl start 命令不输入任何内容。
应用 Systemctl 命令来管理系统服务应用 Systemctl 命令来管理系统服务
要进行服务,请应用 systemctl stop [service-name]。例如,进行 firewalld 服务:

[root@localhost ~]# systemctl stop firewalld
应用 Systemctl 命令来管理系统服务应用 Systemctl 命令来管理系统服务
要重新启动服务,请应用 systemctl restart [service-name],例如:

[root@localhost ~]# systemctl restart firewalld
应用 Systemctl 命令来管理系统服务应用 Systemctl 命令来管理系统服务
要从新加载服务的配置(例如 ssh)而不重新启动它,请应用 systemctl reload [service-name],例如:

[root@localhost ~]# systemctl reload sshd
应用 Systemctl 命令来管理系统服务应用 Systemctl 命令来管理系统服务

systemctl 查看服务状态
为了查看服务是否正在运行,咱们能够应用 systemctl status [service-name]来查看。

[root@localhost ~]# systemctl status firewalld
应用 Systemctl 命令来管理系统服务应用 Systemctl 命令来管理系统服务

查看服务是否设置为开机启动
要在疏导时启用服务,请应用 systemctl enable [service-name],例如:

[root@localhost ~]# systemctl enable httpd.service
Created symlink from /etc/systemd/system/multi-user.target.wants/httpd.service to /usr/lib/systemd/system/httpd.service.
应用 Systemctl 命令来管理系统服务应用 Systemctl 命令来管理系统服务
同样,disable 时勾销疏导时启用服务:

[root@localhost ~]# systemctl disable httpd.service
应用 Systemctl 命令来管理系统服务应用 Systemctl 命令来管理系统服务
能够应用 is-enabled 选项查看开机是否启动该服务,请运行:

[root@localhost ~]# systemctl is-enabled httpd.service
应用 Systemctl 命令来管理系统服务应用 Systemctl 命令来管理系统服务
输入的内容 enabled 示意开机时启动该服务,disabled 示意开机时不启动该服务。

systemctl 列出单元
要列出所有激活的单元,应用 list-units 选项。

[root@localhost ~]# systemctl list-units
应用 Systemctl 命令来管理系统服务应用 Systemctl 命令来管理系统服务
要列出所有流动的服务,请运行:

[root@localhost ~]# systemctl list-units -t service
应用 Systemctl 命令来管理系统服务应用 Systemctl 命令来管理系统服务

应用 systemctl 重启、关机零碎
像 poweroff、shutdown 命令一样,systemctl 命令能够关闭系统,重启或进入休眠状态。

关机:

[root@localhost ~]# systemctl poweroff
重启:

[root@localhost ~]# systemctl reboot
零碎休眠:

[root@localhost ~]# systemctl hibernate
应用 systemclt 治理近程零碎
通常,上述所有 systemctl 命令都能够用于通过 systemctl 命令自身治理近程主机。这将应用 ssh 与近程主机进行通信。如下所示:

[root@localhost ~]# systemctl status httpd -H root@192.168.0.12
应用 Systemctl 命令来管理系统服务应用 Systemctl 命令来管理系统服务
- H 选项,指定近程主机的用户名和明码。

治理 Targets
Systemd 具备 Targets 的概念,这些 Targets 的目标与 sysVinit 零碎中的运行级别类似。sysVinit 中的运行级别次要是数字(0,1,2,-6)。以下是 sysVinit 中的运行级别及其对应的 systemd 中的 target:

0 runlevel0.target, poweroff.target
1 runlevel1.target, rescue.target
2,3,4 runlevel2.target, runlevel3.target,runlevel4.target, multi-user.target
5 runlevel5.target, graphical.target
6 runlevel6.target, reboot.target
如果想要查看以后的运行级别,能够应用如下命令:

[root@localhost ~]# systemctl get-default
multi-user.target
应用 Systemctl 命令来管理系统服务应用 Systemctl 命令来管理系统服务
设置默认的运行级别为 graphical,命令如下:

[root@localhost ~]# systemctl set-default graphical.target
Removed symlink /etc/systemd/system/default.target.
Created symlink from /etc/systemd/system/default.target to /usr/lib/systemd/system/graphical.target.
应用 Systemctl 命令来管理系统服务应用 Systemctl 命令来管理系统服务
想要列出所有激活的 target,能够应用上面命令:

[root@localhost ~]# systemctl list-units -t target
应用 Systemctl 命令来管理系统服务应用 Systemctl 命令来管理系统服务

systemd 工具的其余命令
journalctl 日志收集
systemd 有本人的日志零碎,称为 journald。它替换了 sysVinit 中的 syslogd。

[root@localhost ~]# journalctl
应用 Systemctl 命令来管理系统服务应用 Systemctl 命令来管理系统服务
要查看所有疏导音讯,请运行命令 journalctl -b

[root@localhost ~]# journalctl -b
以下命令实时跟踪系统日志(相似于 tail -f):

[root@localhost ~]# journalctl -f
应用 Systemctl 命令来管理系统服务应用 Systemctl 命令来管理系统服务

查问系统启动过程的持续时间
[root@localhost ~]# systemd-analyze
Startup finished in 497ms (kernel) + 1.836s (initrd) + 6.567s (userspace) = 8.901s
应用 Systemctl 命令来管理系统服务应用 Systemctl 命令来管理系统服务
最初显示系统启动工夫为 8.901 秒。

查看服务的启动工夫:

[root@localhost ~]# systemd-analyze blame
应用 Systemctl 命令来管理系统服务应用 Systemctl 命令来管理系统服务

hostnamectl 命令
查看主机名称:

[root@localhost ~]# hostnamectl
应用 Systemctl 命令来管理系统服务应用 Systemctl 命令来管理系统服务

总结
在本文学习了 systemctl 命令来治理 Linux 发行版中的零碎服务。

退出移动版