start | stop | restart | status
查看网络服务的状态 service network status
停止网络服务 service network stop
启动网络服务 service network start
重启网络服务 service network restart
chkconfig (功能描述:查看所有服务器自启配置)
chkconfig 服务名 off (功能描述:关掉指定服务的自动启动)
chkconfig 服务名 on (功能描述:开启指定服务的自动启动)
chkconfig 服务名 --list (功能描述:查看服务开机启动状态)
systemctl start | stop | restart | status 服务名
使用基本与service相同
systemctl list-unit-files (功能描述:查看服务开机启动状态)
systemctl disable service_name (功能描述:关掉指定服务的自动启动)
systemctl enable service_name (功能描述:开启指定服务的自动启动)
查看当前运行级别: systemctl get-default
systemctl set-default TARGET.target (这里 TARGET取multi-user或者 graphical)
TARGET 就是系统运行级别,一般就使用3 5
在 linux领域内大多用在服务器上,很少遇到关机的操作。毕竟服务器上跑一个服务是永无止境的,除非特殊情况下,不得已才会关机。
(1)sync(功能描述:将数据由内存同步到硬盘中)
(2)halt(功能描述:停机,关闭系统,但不断电)
(3)poweroff (3)reboot(功能描述:关机,断电)
(4) shutdown [选项] 时间(功能描述:就是重启,等同于 shutdown -r now)
-H 相当于--halt,停机
-r -r=reboot 重启
now 立刻关机
时间 等待多久后关机(时间单位是分钟)
参考尚硅谷Linux课程文档,如有侵权联系删