服务操作
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 服务控制
systemctl start service
systemctl stop service
systemctl restart service
systemctl reload service
systemctl status service
# 开机自启
systemctl enable service
systemctl disable service
systemctl is-enabled service
# 服务查看
systemctl list-unit-files --type=service
# 查看服务文件
systemctl cat service