Please enable JavaScript.
Coggle requires JavaScript to display documents.
服务管理 - Coggle Diagram
服务管理
Systemd服务管理程序
运行一个服务:systemctl start httpd.service
重启一个服务: systemctl restart httpd.service
关闭一个服务:systemctl stop httpd.service
显示一个服务(无论运行与否)的状态 systemctl status httpd.service
在开机时启用一个服务: systemctl enable httpd.service
在开机时禁用一个服务: systemctl disable httpd.service
改变默认运行级别
查看当前运行级别: systemctl get-default
默认切换到运行级 5 :
systemctl set-default graphical.target
默认切换到运行级 3 :
systemctl set-default multi-user.target
改变运行级别
.
切换到“运行级 3 ”:
systemctl isolate multi-user.targe
或者 systemctl isolate runlevel3.target
.
切换到“运行级 5 ”:
systemctl isolate graphical.target
或者 systemctl isolate runlevel5.target