从多台机器拷贝文件

为了方便的从多台服务器获取日志,写了个简易脚本专门用于批量拷贝服务器日志到执行脚本的机器中。该脚本包含2个文件bscp.sh和bscp.exp。

使用方式:
sh bscp.sh <username> <host1,host2> <log_file>
username:你ssh到目标机器的密码。
host1,host2:目标机器的ip或者机器名,多个之间用逗号分割。
log_file:你要批量下载的日志的绝对路径。

运行后,程序提示输入目标机器的密码(这里需要多台机器的ssh用户名密码是相同的)
bscp.sh主程序:

#!/bin/bash
if [ $# != 3 ]    ;then
    echo "usage:<username> <host1,host2> <log_file>"
    exit 1
fi
stty -echo              #隐藏密码输出
read -p "Please enter target hosts' passwd of $1:" passwd
stty echo
echo

dirpath=`dirname $0`
#echo $dirpath
$dirpath/bscp.exp $1 $2 $3 $passwd

expect脚本:

#!/usr/bin/expect -f
set user [lindex $argv 0]
set hosts [lindex $argv 1]
set logfile [lindex $argv 2]
set passwd [lindex $argv 3]
set timeout 10
set hostlist [split $hosts ","]            # 把host字符串分割成列表

set slashIdx [expr [string last / $logfile] + 1]
set filename [string range $logfile $slashIdx end]  # 获取日志文件名

foreach h $hostlist {
    set hostfile $filename
    spawn scp $user@$h:$logfile ./$filename.$h
    expect "*Enter passphrase for key*" {  # 这里可以改成其他可能出现的显示文字,如password:等.或者加多交互环节
        send  "$passwd\r"
        send  "\r"
    }
    expect "*%*" {set timeout -1 ; puts "\rtrasmitting..."}
    expect eof {                            # 下载完成后输出成功信息
        puts "\rtransmit successfully!"
        set timeout 10
    }
}

一个例子:
 
执行获取3台机日志:
 ./bscp.sh ultrani host1,host2,host3 /home/admin/xxx/logs/access.log
 
结果是把3台机器的日志下载到执行脚本的目录中
 
日志后缀以机器名结尾:
 access.log.host1
 access.log.host2
 access.log.host3

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/d2277ffc876dca2f69f531ea70654605.html