天天看点

centos6.5下关于shutdown -r 和reboot

版权声明:转载请注明出处:http://blog.csdn.net/dajitui2024 https://blog.csdn.net/dajitui2024/article/details/79396698

reboot

过程会把系统的缓存写到硬盘,先发送

SIGTERM

再发送

SIGKILL

shutdown

过程友好地通知线上用户,然后完好地保存。

shutdown -r now

相对平稳的重启,会对用户和进程做终止通知,然后执行。

reboot

直接终止进程, 正常操作的用户可能会丢失数据,进程被直接终止然后重启设备

init 6

直接将设备切换状态,瞬间停止正在运行的。

安全角度讲,如果有业务运行,

shutdown -r now

更安全一些。更平稳一些。

继续阅读