使用Systemctl命令来管理系统服务
sinye56 2024-11-27 20:30 1 浏览 0 评论
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 stop [service-name]。例如,停止firewalld服务:
[root@localhost ~]# systemctl stop firewalld
要重新启动服务,请使用systemctl restart [service-name],例如:
[root@localhost ~]# systemctl restart firewalld
要重新加载服务的配置(例如ssh)而不重新启动它,请使用systemctl reload [service-name],例如:
[root@localhost ~]# systemctl reload sshd
systemctl检查服务状态
为了查看服务是否正在运行,我们可以使用systemctl status [service-name]来查看。
[root@localhost ~]# systemctl status firewalld
检查服务是否设置为开机启动
要在引导时启用服务,请使用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.
同样,disable时取消引导时启用服务:
[root@localhost ~]# systemctl disable httpd.service
可以使用is-enabled选项检查开机是否启动该服务,请运行:
[root@localhost ~]# systemctl is-enabled httpd.service
输出的内容enabled表示开机时启动该服务,disabled表示开机时不启动该服务。
systemctl列出单元
要列出所有激活的单元,使用list-units选项。
[root@localhost ~]# systemctl list-units
要列出所有活动的服务,请运行:
[root@localhost ~]# systemctl list-units -t service
使用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
-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
设置默认的运行级别为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.
想要列出所有激活的target,可以使用下面命令:
[root@localhost ~]# systemctl list-units -t target
systemd工具的其他命令
journalctl日志收集
systemd有自己的日志系统,称为journald。它替换了sysVinit中的syslogd。
[root@localhost ~]# journalctl
要查看所有引导消息,请运行命令journalctl -b
[root@localhost ~]# journalctl -b
以下命令实时跟踪系统日志(类似于tail -f):
[root@localhost ~]# journalctl -f
查询系统启动过程的持续时间
[root@localhost ~]# systemd-analyze
Startup finished in 497ms (kernel) + 1.836s (initrd) + 6.567s (userspace) = 8.901s
最后显示系统启动时间为8.901秒。
查看服务的启动时间:
[root@localhost ~]# systemd-analyze blame
hostnamectl命令
查看主机名称:
[root@localhost ~]# hostnamectl
总结
在本文学习了systemctl命令来管理Linux发行版中的系统服务。
- 上一篇:linux系统管理:系统优化
- 下一篇:Linux操作系统管理之 /dev/null
相关推荐
- Linux基础知识之修改root用户密码
-
现象:Linux修改密码出现:Authenticationtokenmanipulationerror。故障解决办法:进入单用户,执行pwconv,再执行passwdroot。...
- Linux如何修改远程访问端口
-
对于Linux服务器而言,其默认的远程访问端口为22。但是,出于安全方面的考虑,一般都会修改该端口。下面我来简答介绍一下如何修改Linux服务器默认的远程访问端口。对于默认端口而言,其相关的配置位于/...
- 如何批量更改文件的权限
-
如果你发觉一个目录结构下的大量文件权限(读、写、可执行)很乱时,可以执行以下两个命令批量修正:批量修改文件夹的权限chmod755-Rdir_name批量修改文件的权限finddir_nam...
- CentOS「linux」学习笔记10:修改文件和目录权限
-
?linux基础操作:主要介绍了修改文件和目录的权限及chown和chgrp高级用法6.chmod修改权限1:字母方式[修改文件或目录的权限]u代表所属者,g代表所属组,o代表其他组的用户,a代表所有...
- Linux下更改串口的权限
-
问题描述我在Ubuntu中使用ArduinoIDE,并且遇到串口问题。它过去一直有效,但由于可能不必要的原因,我觉得有必要将一些文件的所有权从root所有权更改为我的用户所有权。...
- Linux chown命令:修改文件和目录的所有者和所属组
-
chown命令,可以认为是"changeowner"的缩写,主要用于修改文件(或目录)的所有者,除此之外,这个命令也可以修改文件(或目录)的所属组。当只需要修改所有者时,可使用...
- chmod修改文件夹及子目录权限的方法
-
chmod修改文件夹及子目录权限的方法打开终端进入你需要修改的目录然后执行下面这条命令chmod777*-R全部子目录及文件权限改为777查看linux文件的权限:ls-l文件名称查看li...
- Android 修改隐藏设置项权限
-
在Android系统中,修改某些隐藏设置项或权限通常涉及到系统级别的操作,尤其是针对非标准的、未在常规用户界面显示的高级选项。这些隐藏设置往往与隐私保护、安全相关的特殊功能有关,或者涉及开发者选项、权...
- 完蛋了!我不小心把Linux所有的文件权限修改了!在线等修复!
-
最近一个客户在群里说他一不小心把某台业务服务器的根目录权限给改了,本来想修改当前目录,结果执行成了根目录。...
- linux改变安全性设置-改变所属关系
-
CentOS7.3学习笔记总结(五十八)-改变安全性设置-改变所属关系在以前的文章里,我介绍过linux文件权限,感兴趣的朋友可以关注我,阅读一下这篇文章。这里我们不在做过的介绍,注重介绍改变文件或者...
- Python基础到实战一飞冲天(一)--linux基础(七)修改权限chmod
-
#07_Python基础到实战一飞冲天(一)--linux基础(七)--修改权限chmod-root-groupadd-groupdel-chgrp-username-passwd...
- linux更改用户权限为root权限方法大全
-
背景在使用linux系统时,经常会遇到需要修改用户权限为root权限。通过修改用户所属群组groupid为root,此操作只能使普通用户实现享有部分root权限,普通用户仍不能像root用户一样享有超...
- 怎么用ip命令在linux中添加路由表项?
-
在Linux中添加路由表项,可以使用ip命令的route子命令。添加路由表项的基本语法如下:sudoiprouteadd<network>via<gateway>这...
- Linux配置网络
-
1、网卡名配置相关文件回到顶部网卡名命名规则文件:/etc/udev/rules.d/70-persistent-net.rules#PCIdevice0x8086:0x100f(e1000)...
- Linux系列---网络配置文件
-
1.网卡配置文件在/etc/sysconfig/network-scripts/下:[root@oldboynetwork-scripts]#ls/etc/sysconfig/network-s...
你 发表评论:
欢迎- 一周热门
- 最近发表
- 标签列表
-
- oracle忘记用户名密码 (59)
- oracle11gr2安装教程 (55)
- mybatis调用oracle存储过程 (67)
- oracle spool的用法 (57)
- oracle asm 磁盘管理 (67)
- 前端 设计模式 (64)
- 前端面试vue (56)
- linux格式化 (55)
- linux图形界面 (62)
- linux文件压缩 (75)
- Linux设置权限 (53)
- linux服务器配置 (62)
- mysql安装linux (71)
- linux启动命令 (59)
- 查看linux磁盘 (72)
- linux用户组 (74)
- linux多线程 (70)
- linux设备驱动 (53)
- linux自启动 (59)
- linux网络命令 (55)
- linux传文件 (60)
- linux打包文件 (58)
- linux查看数据库 (61)
- linux获取ip (64)
- linux进程通信 (63)