1. Red Hat Enterprise Linux 7
1.1. 什么是服务?
服务就是在系统中运行的软件,这个软件主要是对外提供某项功能,那么我们把这一类软件叫做服务。 服务器则是安装了很多这类软件的主机。
1.2. 服务管理systemctl
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| systemctl start 服务名称 systemctl stop 服务名称 systemctl restart 服务名称 systemctl reload 服务名称 systemctl status 服务名称 systemctl enable 服务名称 systemctl disable 服务名称 systemctl show 服务名称
systemctl list-dependencies 服务名称 systemctl list-units systemctl list-unit-files systemctl set-default multi-user.target systemctl set-default graphical.target
|