批量scp指令碼——從多臺機器拷貝相同檔案
阿新 • • 發佈:2019-01-10
為了方便的從多臺伺服器獲取日誌(不同機器的相同日誌),寫了個簡易指令碼專門用於批量拷貝伺服器日誌到執行指令碼的機器中。該指令碼包含2個檔案bscp.sh和bscp.exp。
使用方式:
sh bscp.sh <username> <host1,host2> <log_file>
username:你ssh到目標機器的密碼。
host1,host2:目標機器的ip或者機器名,多個之間用逗號分割。
log_file:你要批量下載的日誌的絕對路徑。
執行後,程式提示輸入目標機器的密碼(這裡需要多臺機器的ssh使用者名稱密碼是相同的,且之前需要建立過ssh連線,就是不需要再進行yes/no互動)
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
- #!/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 [email protected]$h:$logfile ./$filename.$h
- expect "*Enter passphrase for key*" { # 這裡可以改成其他可能出現的顯示文字,如password:等.或者加多yes/no的互動環節
- 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