Linux shutdown command

If you wish to power off your Linux server or Linux VPS you can use the shutdown command in Linux for this.

Why use shutdown?

The command stops the system in a secure way.  All specific software on your machine that is designed to take measures when shutting down will be notified and given enough time.

You also have options on whether to shut the system immediately or after a time period which allows you to schedule future events or notify your users about an upcoming reboot/shutdown.

Shutdown your server

It’s the most basic and simple usage

shutdown

Shutdown and halt afterward

shutdown -h

Shutdown and reboot your server

shutdown -r

Shutdown in a specific time

shutdown now # immediately shuts down the server
shutdown 15:00 # shuts down at 3 PM
shutdown +30 # shuts down in 30 minutes

Cancel scheduled shutdown

If you have used any of the above options to schedule a shutdown and you wish to cancel it you can do that

[uvp@local] [~]$:shutdown -c

shutdown -c

Fake shutdown

When you’re developing your software to “understand” about an upcoming shutdown on the machine you can actually send out a fake signal that the server is being shut down.

shutdown -k
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Linux tar Command

The Linux tar command is used to compress and extract files to and from an archive. In this...

Linux top command

If you wish to monitor the performance of your VPS or Dedicated server and track processes, RAM...

Linux ping command

If you wish to test your connection to a server from your Linux system you can use the Linux ping...

Linux file command

The file command is used to check a file’s type and contents in Linux environment. It is most...

Linux export command

When you’re managing your shell’s variables and you wish to save them to your environment you can...