Categories: TutorialsUbuntu

How to Run Shell Script on Another Server

Shell scripts provide a great way to automate commands, processes and tasks in Linux. Often shell scripts are run on local systems. But sometimes we may need to run a shell script on another server. This is often a requirement for many system administrators that need to do data backups and system maintenance on other systems in their network. In this article, we will learn how to run shell script on another server.

How to Run Shell Script on Another Server

Here is the basic syntax to run shell script on another server.

ssh user@server-name-here /path/to/script
ssh user@server-name-here /path/to/script arg1 arg2 arg3
OR
ssh user@server-name-here /path/to/command
ssh user@server-name-here /path/to/command arg1 arg2
Sponsored

For example, if you have a script /home/ubuntu/data.sh on a remote server 54.43.32.21, then here is the command to run it.

$ ssh test_user@54.43.32.21 /home/ubuntu/data.sh

Please note, you need to have a remote user access to the destination server where you want to run your script. Also you may be asked for an account password before login.

Similarly, you can also run other commands on remote server. Here is an example to run date command on remote server.

Sponsored
$ ssh test_user@54.43.32.21 date

In this article, we have learnt how to run shell script on another server. It is very useful for system administrators to run scripts on other systems to backup data and perform system maintenance. The key is to have execute access on remote system where you intend to run your shell script or command.

Also read:

How to Enable Confirmation for Rm Command
How to Share Linux Terminal Session
How to Use WhoIs Command in Linux
How to Extract & Copy Files from ISO Image
Tools to Scan Viruses & Malware

The post How to Run Shell Script on Another Server appeared first on Fedingo.

Ubuntu Server Admin

Recent Posts

Welcome to the Ubuntu Weekly Newsletter 883

Welcome to the Ubuntu Weekly Newsletter, Issue 883 for the week of March 9 –…

4 hours ago

How to Install nvidia-smi on Ubuntu or Debian Linux

In this article, we will see how to install nvidia-smi on Ubuntu or Debian Linux.…

16 hours ago

How to Install clang tool on Ubuntu or Debian Linux

In this article, we will see how to install clang tool on Ubuntu or Debian…

2 days ago

How to resolve Ubuntu 20.04 Container Signature Errors on Raspberry Pi ARM Devices

When working with Docker containers on Raspberry Pi devices, you might encounter frustrating signature verification…

2 days ago

How to fix DNS Resolution Issues with OpenVPN on Ubuntu 18.04

You’ve recently upgraded to Ubuntu 18.04 and found that your OpenVPN connection no longer resolves…

2 days ago

How to Fix Ubuntu 18.04 System Monitor Launch Issues

Have you ever tried to open System Monitor on your Ubuntu 18.04 system only to…

3 days ago