Running Commands on a Remote Linux / UNIX Host

by nixcraft on July 25, 2005 · 10 comments

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:

Share this with other sys admins!
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 }

1 Amitabh May 14, 2008

Hi ,

Can you please help to show “how to run top command in a remote host” ?

Thanks,

Amitabh

Reply

2 web designer July 22, 2009

I have just put this in a script in a cron job to keep the mysql databases in sync. Great.

Reply

3 web design July 22, 2009

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

Reply

4 web design and seo August 4, 2009

Thank you, Ive been trying to do this for weeks

Reply

5 Sandy December 24, 2009

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.

Reply

6 Sandy December 24, 2009

continue to above post.

Local host – aaa
RemoteHost – sandy

Reply

7 venkat June 25, 2010

dude…I want to execute the following

ssh user@server

it is asking for password….how to give password dynamically?

Reply

8 Pramod September 22, 2010

You need to exchange the ssh keys between the remote and your machine from where you are doing this.

Reply

9 sarath June 27, 2011

Is any additional configurations are required to use ssh in Ubuntu

Reply

10 Raj August 26, 2011

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

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 4 + 12 ?
Please leave these two fields as-is:
Are you a human being? Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: