@Mr-13
2020-01-14T03:58:12.000000Z
字数 376
阅读 40
Linux
[root@mr13 ~] systemctl enable nginx
[root@mr13 ~] systemctl disable nginx
[root@mr13 ~] systemctl list-unit-files
# 开机启动项列表会很长,有300+项;可以用管道筛选需要的服务名称,例如:
[root@mr13 ~] systemctl list-unit-files | grep nginx
[root@mr13 ~] systemctl start nginx
[root@mr13 ~] syatemctl restart nginx
[root@mr13 ~] systemctl stop nginx
[root@mr13 ~] systemctl status nginx