Linux中用systemctl命令管理服务

若如初见. 提交于 2020-01-15 08:58:38

systemctl start foo.service 启动服务
systemctl restart foo.service 重启服务
systemctl stop foo.service 停止服务
systemctl reload foo.service 重新加载配置文件(不终止服务)
systemctl status foo.service 查看服务状态

systemctl enable foo.service 开机自启动
systemctl disable foo.service 开机不自启动
systemctl is-enabled foo.service 查看特定服务是否是开机自启动
systemctl list-unit-files --type=service 查看各个级别下服务的启动与禁用情况

注意 服务名foo后的.service可以省略

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!