systemctl常用命令

systemctl常用命令

systemctl 防火墙操作

1
2
3
4
5
6
7
8
9
#暂时关闭防火墙的命令:
systemctl stop firewalld
#暂时开启防火墙:
systemctl start firewalld

#永久关闭防火墙(禁用开机自启)下次启动,才生效:
systemctl disable firewalld
#永久开启防火墙(启用开机自启)下次启动,才生效:
systemctl enable firewalld

systemctl 常用命令

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
1、启动服务 
systemctl start 服务名

2、停止服务
systemctl stop 服务名

3、重启服务
systemctl restart 服务名

4、查看服务是否已启动
systemctl is-active 服务名

5、查看服务的状态
systemctl status 服务名

6、启用开机自启动服务
systemctl enable 服务名

7、停用开机自启动服务
systemctl disable 服务名

8、查看服务是否为开机自启动
systemctl is-enabled 服务名

9、只重启正在运行中的服务
systemctl try-restart 服务名

10、显示所有的服务状态---空格翻页 q推出
systemctl list-units --type service --all

11、查看启动成功的服务列表
systemctl list-unit-files|grep enabled

12、查看启动失败的服务列表
systemctl --failed

13、查看所有服务的状态---空格翻页 q推出
systemctl list-unit-files --type service