原由在于:重启服务器后有时候服务不会启动,而有时候又能够自动运行,惟一差异在于重启命令用的是reboot仍是init 6.
后查了相关资料,居然大有玄机:
对这两个操做使用man命令看到的内容以下:
init 6 Stop the operating system and reboot to the state defined by the initdefault entry in /etc/inittab.
reboot - reboot performs a sync(1M) operation on the disks, and then a
multi- user reboot is initiated. See init(1M) for details.
"init 6" 基于一系列/etc/inittab文件,而且每一个应用都会有一个相应shutdown脚本。
'init 6' 调用一系列shutdown脚本(/etc/rc0.d/K*)来使系统优雅关机;
'reboot'并不执行这些过程,reboot更是一个 kernel级别的命令,不对应用使用shutdown脚本。 .
咱们应该在一般状况下使用 init 6.
在出问题的情况下或强制重启 时使用reboot.
reboot is a more aggresive command to use. init 6 is much graceful
服务器
use of `init 6` will give the cleanest and orderly reboot (init informs svc.startd of the runlevel change and will move to the appropriate milestone).app
use of `shutdown -y -g0 -i6 **message**` will invoke init as well as give you grace period and messages to user (shutdown invoked the same as init above).ide
halt,reboot,poweroff will not run any of the shutdown scripts and should be last resort.orm