I have heard that pssh and clusterssh are two popular ones, but I thought I would open it to discussion here and see what the community's experiences with these tools were? What are the gotchas? Any decent hacks or use cases?
|
|
I have used pssh and it's easy and works quite well. It's really great for quick queries. If you find yourself managing servers I'd suggest something more robust and in a slightly different realm (configuration management) such as Puppet or CFEngine. |
|||||||||||
|
|
The SSH Power Tool (sshpt) was designed for parallel SSH without requiring that the user setup pre-shared SSH keys. It is superior to pssh and clusterssh in that it supports executions via sudo and can also copy files and execute them afterwards (optionally, via sudo as well). By default it outputs results in CSV format but sshpt.py doubles as an importable Python module so you can use it in your own programs (I used to use it as a back-end behind a a custom-built web-based reporting tool at my former employer). |
|||
|
|
|
Its important to know what you want to do. If you want to run 'apt-get update' on lots of servers, clusterssh is reportedly an easy-to use and effective tool. See Kyle Rankin's article on clusterssh at the Linux Journal. If your work on different servers will require logic loops, putting, getting or otherwise interacting with each host (or possibly having to interact with a host because of an error condition) a tool such as Fabric (which has just hit its 1.0 release) is invaluable. You'll probably enjoy most using Fabric if you are a pythonista. In either case one is probably expecting to do fairly simple tasks on the remote servers affected, and dropping in specially on any problem hosts. However Fabric provides more options for dealing with variation. One thing that is generally not handled well is dealing with multiple hosts behind a gateway host, requiring one to connect first to the gateway and then port forwarding from there. As ssh itself does this quite simply, and one can set one's
In order to do the equivalent of |
|||
|
|
|
I use cssh and it works like a charm. You can edit the same file on several servers easily and then check only one window and change for instance value of particular variable. Repeat that for every window, hit :wq in vim and voila! Work is done ;) It is also excellent tool for making aptitude upgrade. |
|||
|
|
|
Konsole in KDE and Terminal.app on OS X also have the capability of turning one console or tab into a "controlling" terminal that send input to multiple tabs/windows/sessions. In the past, I have used pconsole for this. |
|||||||
|
|
Mussh is a good alternative, it is already included in many Linux distros.
|
|||
|
|
|
My favorite parallel SSH tool is PuSSH ... IMO the syntax is more intuitive than any other similar packages available, and it doesn't actually need installation as an RPM, compilation or anything else. It just downloads as a couple of scripts, and just works. |
||||
|
|
protected by Iain♦ Nov 29 '11 at 10:31
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.