systemd用于启动守护进程,是系统的第一个进程,PID为1

systemctl

systemctl command name.service

常用命令
启动:start
停止:stop
重启:restart
状态:status
重载或重启:reload-or-restart
条件式重启:try-restart
禁止设定为开机自启:mask
取消禁止开机自启:unmask
自启:enable
禁止:disable
查看是否激活:is-active
查看已经激活的服务list-units --type service
查看所有服务开机自启状态:list-unit-files --type service

切换至紧急救援模式:rescue

切换至emergency模式:emergency

chkconfig

查看是否开机启动chkconfig --list name
设定服务自启动:chkconfig name on
禁止:chkconfig name off
查看所有服务开机自启状态chkconfig --list

其他systemd命令

标签: none

评论已关闭