CentOS/RHEL 6:关机命令
时间:2020-01-09 10:34:17 来源:igfitidea点击:
通过基于ssh的会话关闭基于RHEL的系统的命令是什么?
如何关闭基于CentOS Linux的系统?
您可以在基于CentOS/Red Hat/RHEL/Fedora/Scientific Linux的系统上使用以下命令之一来关闭系统:
- ``shutdown
command
以安全的方式关闭系统/服务器。 - 停止或关闭电源命令这些程序允许系统管理员停止或关闭系统电源。
- telinit命令将系统运行级别更改为零(0),即关闭系统。
RHEL/CentOS/Red Hat服务器电源关闭命令语法
您可以使用以下任何命令,并且基本语法为:
shutdown -h now
或者
shutdown -h 0
或者
poweroff
或者
halt
或者
telinit 0
关闭Red Hat(RHEL)/CentOS Linux系统的确切过程和命令
打开终端或通过ssh登录到远程服务器。
以root用户身份键入以下命令以立即关闭服务器,而不会向用户发出任何警告:
# shutdown -h now
但是,在繁忙的系统上,您可能希望使用wall命令向所有人终端发送消息,如下所示:
# wall "Server is shutting down in 10 minutes. Please save all work." # shutdown -h +10
或按以下方式使用shutdown命令发送消息:
# shutdown -h +5 "System RAM upgraded scheduled at 6:30pm IST. Save all your work as system going to shutdown in 5 minutes."
输出示例:
Broadcast message from [email protected] (/dev/pts/0) at 4:38 ... The system is going down for halt in 5 minutes! System RAM upgraded scheduled at 6:30pm IST. Save all your work as system going to shutdown in 5 minutes.