自動發送密碼抓取遠程日誌用Shell指令碼如何??

來源:互聯網
上載者:User

標籤:style   http   os   檔案   ar   art   代碼   html   

在linux系統中,如何用shell指令碼抓取遠程日誌?分析線上的日誌會有一個困境,機器太多,如果每台都登入上去看不太現實,但是下載下來更麻煩因為每台SCP都要求輸入密碼。於是我便寫了一個自動抓取遠程日誌的指令碼,實現在準系統。

 代碼:

#!/usr/bin/expect -f

if { $argc !=1 && $argc !=2 } {
send_user "沒有輸入遠程記錄檔名.\n"
send_user "格式是:get.sh ${remote_log} ${local_log}\n"
send_user "例如:\n"
send_user "./get.sh /home/admin/log/gc.log /tmp/gc.log\n"
send_user "local_log沒有輸入,預設是值:/logs/log.txt\n"
exit
} # www.jbxue.com
set log_path [lindex $argv 0]
if { $argc == 2 } {
set local_logpath [lindex $argv 1]
} else {
set local_logpath "./logs/log.txt"
send_user "local_log沒有輸入,預設是本地日誌路徑 :$local_logpath \n"
}
set file "./ip.txt"
if {[file isfile $file]!=1} {
send_user "Ip 檔案不存在,請檢查.\n"
exit
}
send_user "\n\n\n"
set f [open $file r]
set count 0
while {[gets $f line]>=0} {
set ips($count) $line
#puts "line $count of file: $ips($count)"
incr count
}
close $f
set i 0
while {$i<50} {
#puts $ips($i)
spawn scp [email protected]$ips($i):$log_path $local_logpath.$ips($i)
expect "[email protected]$ips($i)‘s password: " {send "look\r"}
expect eof
incr i
}
exit

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.