欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

systemctl

程序员文章站 2024-02-19 17:50:04
...
许多linux的distributions都已经转投systemd了,而ubuntu自从15.04版本以后都使用了systemd.

只介绍常见常用的命令:
    打开服务:sudo systemctl start foobar
    关闭服务:sudo systemctl stop foobar
    重启服务:sudo systemctl restart foobar
    不中断正常功能下重新加载服务:sudo systemctl reload foobar
    设置服务的开机自启动:sudo systemctl enable foobar
    关闭服务的开机自启动:sudo systemctl disable foobar
    查看活跃的单元:systemctl list-units
    查看某个服务的状态:systemctl status foobar

转自:https://blog.csdn.net/qq_37993487/article/details/79868857