开机自启
查看是否是开机自启服务:
systemctl is-enabled nginx
设置开机自启服务:
systemctl enable nginx
操作
启动一个服务:
$ systemctl start nginx.service
关闭一个服务:
$ systemctl stop postfix.service
重启一个服务:
$ systemctl restart nginx.service
刷新服务配置:
$ systemctl daemon-reload
日志
查看日志:
$ journalctl
查看特定服务日志:
$ journalctl -f -u nginx.service