系统声称正在重新启动,但未运行关机程序

系统声称正在重新启动,但未运行关机程序

当我尝试在本地或远程连接到主机时,机器拒绝登录,认为已启动关机命令:

[~]$ ssh somehost
The system is going down for reboot in 1 minute!
This machine requires an immediate reboot. 

Connection closed by somehost

但机器从未关闭并且没有运行关机命令:

[root@somehost ~]# shutdown -c
shutdown: Cannot find pid of running shutdown

如果我使用关机或重启命令重启主机,机器会正常重启,但一旦重新启动,它仍然认为机器将在 1 分钟内关闭并重启。如何阻止它处于关机模式?

答案1

somehost$ sudo rm /etc/nologin

该文件可能存在并阻止进一步登录,从而导致上述行为。

当登录被拒绝时,该文件的内容将用作原因的解释。

相关内容