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 Pair Airpods Pro with Ubuntu
How to Become Root User in Linux
How to Create Swap Space in Ubuntu/Debian
How to Pass Variable in cURL Command
How to Lock & Unlock Users in Linux
How to Set or Change Timezone in Ubuntu
How to Restore Deleted Tmp Directory in Linux
How to Copy Files from Linux to S3 bucket

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