Best way to gracefully restart CentOS?

Solution 1:

There is no better way to restart your server by using anything else than any those commands.

  • shutdown is the most common way to stop your system. Adding the argument -r and a specific time (or 'now') will reboot your system instead of halting it after the shutdown sequence.
  • reboot is a wrapper round shutdown which does some harddisk maintenance (syncing and/or putting in standby mode and not really relevant).
  • New versions of reboot (>2.74) will initiate shutdown if not in runlevel 0 or 6.
  • Most init scripts call halt to make a log in utmp.

Modern distributions will have all tasks covered regardless of the command you are using. Basically they all initiate the shutdown run-time of your SysV (CentOS <7) or systemd (CentOS >=7) scripts (I will call them init scripts for ease of reading).

Shutting down using init scripts step by step stop all your services registered under usually runlevel 'S'. Individual init scripts can have a timeout, like the MySQL init script in CentOS. When the stop argument is given and the daemon will not be shutdown in a fair amount of time, the script will stop and exit giving a failure. The shutdown process will continue as if nothing was wrong, only taking a bit longer and probably print a warning. At the end, when all init scripts are executed, the inevitable will happen: all processes still running will get a SIGTERM signal and, after a few seconds (2 or 5), a SIGKILL. This will clean up the rest before an ACPI call is done to really reboot or shutdown your system.

One exception is using the reboot command with the -f option, this will skip executing init scripts and will reboot the system directly.

You will be better off fixing the root-cause of your worries: MySQL not shutting down properly.

Often this is due to the massive load of work that needs to be done before the daemon can be exited safely. I once had a MySQL instance with +300.000 tables that took over an hour to exit. Similar issues can be found with systems using huge buffers and sparse I/O availability.

Solution 2:

A graceful shutdown of Centos 6.x should be done by using the command as root:

shutdown -h now

This will attempt to stop all running services before shutting down the server gracefully.

Using this command also prevents mySQL socket issues.

Similarly, for a graceful reboot:

reboot -h now

You can read a previous answer about a similar question here:

https://stackoverflow.com/questions/20407292/centos-another-mysql-daemon-already-running-with-the-same-unix-socket


Solution 3:

I use the command 'init 6' .

init 6 tells the init process to shutdown all of the spawned processes/daemons as written in the init files (in the inverse order they started) and lastly invoke the shutdown -r now command to reboot the machine.

More information can be found on this question.


Solution 4:

When giving remote instructions to end-users and customers, I instruct them to use poweroff to shutdown and power the system off.

If they want a warm reboot, I suggest that they use the reboot command.

I suppose one could say that issuing Ctrl-Alt-Delete also accomplishes this ;)