You would like to execute a command on a remote Linux/FreeBSD/Solaris/UNIX host and have the result displayed locally. Once result obtained it can be used by local script or program. A few examples:
=> File system and disk information
=> Get user information
=> Find out all running process
=> Find out if particular service is running or not etc
You can use rsh or ssh for this purpose. However, for security reason you should always use the ssh and NOT rsh. Please note that remote system must run the OpenSSH server.
Syntax for running command on a remote host:
ssh [USER-NAME]@[REMOTE-HOST] [command or script]
Where,
- ssh: ssh (SSH client) is a program for logging into a remote machine and for executing commands on a remote machine.
- USER-NAME: Remote host user name.
- REMOTE-HOST: Remote host ip-address or host name, such as fbsd.cyberciti.biz.
- command or script: Command or shell script is executed on the remote host instead of a login shell.
Examples
(A) Get disk information from a server called www1.cyberciti.biz:
$ ssh vivek@www1.cyberciti.biz df -h
(B) List what ports are open on remote host
$ ssh vivek@www1.cyberciti.biz netstat -vatn
(C) Reboot remote host:
$ ssh root@www1.cyberciti.biz reboot
(D) Restart mysql server (please note enclosed multiple command line arguments using a single or double quotes)
$ ssh root@www1.cyberciti.biz '/etc/init.d/mysql restart'
(E) Get memory information and store result/output to local file /tmp/memory.status:
$ ssh vivek@www1.cyberciti.biz 'free -m' > /tmp/memory.status
(G) You can also run multiple command or use the pipes, following command displays memory in format of "available memory = used + free memory" :
$ ssh vivek@debian.test.com free -m | grep "Mem:" | awk '{ print "Total memory (used+free): " $3 " + " $4 " = " $2 }'
See how to configure ssh for password less login using public key based authentication.
=> Related: shell script to get uptime, disk usage, cpu usage, RAM usage,system load,etc. from multiple Linux servers and output the information on a single server in a html format.
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins

- My 10 UNIX Command Line Mistakes
- 25 PHP Security Best Practices For Sys Admins
- The Novice Guide To Buying A Linux Laptop
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
Facebook it - Tweet it - Print it -
We're here to help you make the most of sysadmin work. So, subscribe!


{ 10 comments… read them below or add one }
Hi ,
Can you please help to show “how to run top command in a remote host” ?
Thanks,
Amitabh
I have just put this in a script in a cron job to keep the mysql databases in sync. Great.
Hi Amitabh, Have you tried “ssh root@domain.com htop”.
Im not sure where the output would go but its worth a try if you havent already.
Lien
Thank you, Ive been trying to do this for weeks
Hi,
I am trying to execute the script from my local to remote host.
ssh sandy “/home/user/san/print_my_lines”
The scripts works all right but not able to come out of remote host.
Could you please help me out.
continue to above post.
Local host – aaa
RemoteHost – sandy
dude…I want to execute the following
ssh user@server
it is asking for password….how to give password dynamically?
You need to exchange the ssh keys between the remote and your machine from where you are doing this.
Is any additional configurations are required to use ssh in Ubuntu
How can we run a script on a remote machine without passwords?
When i issue the following command, it is prompting for passoword. Could any one advise on this please ?
ssh username@hostname df -h