HiveSSH

From Noah.org
Revision as of 12:07, 16 August 2008 by Root (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Control a group of hosts from one shell

This lets you SSH to a group of servers and control them as if they were one. Each command you enter is run on each host in parallel. The response of each host is collected and printed. In normal synchronous mode Hive will wait for each host to return the shell command line prompt. The shell prompt is used to sync output.

The goal of this tool is similar to `cssh` (Cluster SSH), but `cssh` runs in X Windows and is much nicer. HiveSSH is a text application that runs in a terminal.

Download

HiveSSH is one of the example application that comes with Pexpect. Download from here:

   SourceForge


Notes

This is a stable beta. I might get rid of the synchronous mode so that hosts can respond in their own time. Another idea is to build a curses interface so that you can sequence through all the different host output screens.

Example

This shows hivessh connecting to two servers and running uptime.

    $ ./hivessh.py host1.example.com host2.example.net
    username: noah
    password: 
    connecting to host1.example.com - OK
    connecting to host2.example.net- OK
    targetting hosts: 192.168.1.1 192.168.1.2 
    CMD (? for help) > uptime
    =======================================================================
    host1.example.com
    -----------------------------------------------------------------------
    uptime
    23:49:55 up 74 days,  5:14,  2 users,  load average: 0.15, 0.05, 0.01
    =======================================================================
    host2.example.net
    -----------------------------------------------------------------------
    uptime
    23:53:02 up 1 day, 13:36,  2 users,  load average: 0.50, 0.40, 0.46
    =======================================================================

Usage:

    hivessh.py host1 host2 host3 ... hostN

You will be asked for your username and password. It is assumed that these will be the same for all hosts or that you have key pairs registered for each host.

   --askall : This tells Hive that you want to be prompted for your
               username and password separately for all machines.
               This is useful if you have differnet usernames and
               passwords on each host. This can even be used to connect
               to different user accounts on a single host. For example:
                   hive.py --askall host1 host1 host1