systemctl 命令

查看进程状态

systemctl status
该命令会列出所有服务

结束服务

systemctl stop halo.service
结束halo服务

启动服务

systemctl start halo.service
启动halo服务

重启服务

systemctl restart halo.service
重启halo服务

关于开机自启动

开机启动服务

systemctl enable halo.service

停止开机启动

systemctl disable halo.service