Often system administrators need to shutdown/reboot remote Linux systems. This is a problem faced by many new system administrators. In this article, we will learn how to shutdown/reboot remote Linux system.
How to Shutdown/Reboot Remote Linux System
Here are the steps to shutdown/reboot remote Linux system.
1. Log into Remote Server
Open terminal and run the following command to SSH into remote server. Replace user with SSH username, and server-name with the domain name or IP address of remote server.
$ ssh user@server-name
2. Shutdown/Reboot Linux system
Run the following command to shutdown the remote system.
$ sudo shutdown
Run the following command to reboot the remote system.
$ sudo reboot
3. Shortcuts to Shutdown/Reboot remote system
You can combine the remote login and shutdown/reboot in a single command as shown below.
##reboot $ ssh -t user@server-name 'sudo reboot' OR $ ssh -t user@server-name 'sudo halt' ##shutdown $ ssh -t user@server-name 'sudo shutdown -r 0' OR $ ssh -t user@server-name 'sudo shutdown -r now'
In this article, we have learnt how to shutdown/reboot remote Linux server.
Also read:
How to Setup DNS Caching Server in CentOS/RHEL
How to Delete Partition in Linux
How to Backup SAP HANA database
How to Add Multiple Hosts in PHPMyAdmin
Git Compare Difference Between Branches
Related posts:
How to Uninstall Slack in Ubuntu
How to Make POST Request with cURL
How to Lock & Unlock Users in Linux
How to View Hidden Files in Linux
How to Stop/Prevent SSH Brute Force Attacks
How To List All Services in Systemctl
How to Clone Partition or Hard Disk in Linux
How to Install RPM Package in Redhat, CentOS

Sreeram has more than 10 years of experience in web development, Python, Linux, SQL and database programming.