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

How is Livepatch safeguarded against bad actors?

Canonical Livepatch is a security patching automation tool which supports reboot-less security updates for the…

7 hours ago

Accelerating data science with Apache Spark and GPUs

Apache Spark has always been very well known for distributing computation among multiple nodes using…

7 hours ago

Cut data center energy costs with bare metal automation

Data centers are popping up everywhere. With the rapid growth of AI, cloud services, streaming…

1 day ago

Build the future of *craft: announcing Starcraft Bounties!

Our commitment to building a thriving open source community is stronger than ever. We believe…

1 day ago

NodeJS 18 LTS EOL extended from April 2025 to May 2032 on Ubuntu

The clock was ticking: Node.js 18’s upstream End of Life (EOL) The OpenJS Foundation is…

1 day ago

Native integration now available for Pure Storage and Canonical LXD

June 25th, 2025 – Canonical, the company behind Ubuntu, and Pure Storage, the IT pioneer…

2 days ago