使用pssh批量管理服务器

pssh是一个可以在多台服务器上执行命令的工具,同时支持拷贝文件,是同类工具中很出色的。使用是必须在各个服务器上配置好密钥认证访问。

在系统centos 5.6  64位 和 red hat enterprise linux 6.1 64位中测试通过

1   安装pssh

    在http://www.theether.org/pssh/  或者http://code.google.com/p/parallel-ssh/下载pssh最新版本

    #   wget  http://www.theether.org/pssh/pssh-1.4.3.tar.gz

    #   tar zxvf pssh-1.4.3.tar.gz

   #   cd pssh-1.4.3

  #   wget 'http://peak.telecommunity.com/dist/ez_setup.py'

  #   python ez_setup.py

 #  python setup.py install

2    pssh使用

   

Usage: pssh [OPTIONS] -h hosts.txt prog [arg0] ..

  -h --hosts   hosts file (each line "host[:port] [user]")
  -l --user    username (OPTIONAL)
  -p --par     max number of parallel threads (OPTIONAL)
  -o --outdir  output directory for stdout files (OPTIONAL)
  -e --errdir  output directory for stderr files (OPTIONAL)
  -t --timeout timeout (secs) (-1 = no timeout) per host (OPTIONAL)
  -O --options SSH options (OPTIONAL)
  -v --verbose turn on warning and diagnostic messages (OPTIONAL)
  -P --print   print output as we get it (OPTIONAL)
  -i --inline  inline aggregated output for each server (OPTIONAL)

Example: pssh -h nodes.txt -l irb2 -o /tmp/foo uptime

创建管理服务器列表文件

vi  server1.txt

192.168.1.11

192.168.1.12

192.168.1.13

192.168.1.14

在各个主机执行命令hostname

   # pssh -h server1.txt -l root -P hostname

在各个主机传送文件

   pscp -h server1.txt -l root test.txt /tmp/test.txt

   prsync -r -h server1.txt -l root  foo /home/irb2/foo

把文件或者目录并行地从多个远程主机复制到中心主机

它从每台远程计算机收集指定的文件,但是并不覆盖文件的本地版本。pslurp 为每台远程计算机创建一个子目录并把指定的文件复制到此位置

# pslurp -r -h /home/server1.txt  /home/test.txt  /home

/home/server1.txt  为远程文件 /home为本地目录,也可以为拷贝到本地后的文件名

# pslurp -r -h /home/server1.txt -L /srv/test/ /srv llll

其中 -r表示递归子目录,-L 选项指定创建子目录的位置,/srv为远程目录,lll为拷贝到本地后的目录名

 pnuke用法-并行地在多个远程主机上杀死进程

pnuke 相当于运行 ssh host killall。pnuke 的参数是一个模式。在远程计算机上运行的名称符合这个模式的所有进程都被杀死。可以用此命令方便地在一组服务器上停止同一守护进程。

# pnuke -h /home/server.txt --user=root cron

命令的结果则是在server.txt文件中指定的主机上执行killall cron命令 其中cron为匹配到cron的进程, 只要ps进程中出现相关词语 都能杀死



 

你可能感兴趣的:(centos,python,server,服务器,cron,output)