Total Hit Counter
Wednesday, June 19, 2013
Wednesday, June 12, 2013
Run the same command on many Linux servers at once
Ever have to check a list of Linux servers for various things like what version of CentOS they’re running, maybe how long each has been running to get an uptime report? You can – and it’s very easy to get going with it.
gsh allows you to run commands on multiple hosts by adding tags to the gsh command.
gsh tag "remote command"
Important things to remember:
/etc/ghosts contains a list of all the servers and tags
gsh is a lot more fun once you’ve set up ssh keys to your servers Examples to use:
List uptime on all servers in the linux group:
gsh linux "uptime"
Check to see if an IP address was blocked with CSF by checking the csf and csfcluster groups/tags:
gsh csf+csfcluster "/usr/sbin/csf -g xxx.xxx.xxx.xxx"
Unblock an IP and remove from /etc/csf.deny from all csf and csfcluster machines
gsh csf+csfcluster "/usr/sbin/csf -dr xxx.xxx.xxx.xxx"
Check the linux kernel version on all VPS machines running centos 5
gsh centos5-baremetal "uname -r"
Check cpanel version on all cpanel machines
gsh cpanel "/usr/local/cpanel/cpanel -V"
The full readme is located here: http://outflux.net/unix/software/gsh/
Here’s an example /etc/ghosts file:
# Machines
#
# hostname OS-Version Hardware OS cp security
1.linuxbrigade.com debian6 baremetal linux plesk iptables
2.linuxbrigade.com centos5 vps linux cpanel csfcluster
3.linuxbrigade.com debian7 baremetal linux plesk iptables
4.linuxbrigade.com centos6 vps linux cpanel csfcluster
5.linuxbrigade.com centos6 vps linux cpanel csfcluster
6.linuxbrigade.com centos6 vps linux nocp denyhosts
7.linuxbrigade.com debian6 baremetal linux plesk iptables
8.linuxbrigade.com centos6 baremetal linux cpanel csf
9.linuxbrigade.com centos5 vps linux cpanel csf
centos5 vps linux cpanel csf
Subscribe to:
Posts (Atom)