expect實現ssh無密鑰登陸
一年多錢就用過expect,當時寫了個用expect實現ssh無密鑰登陸的腳本,後來弄丟了。
今晚和同學一起裝了個100個節點的集群,實在是惡心了,於是又溫習了一遍。
先安裝expect:
[plain]
# yum install expect
我用了兩個腳本,一個bash腳本(send_key.sh),在其中調用另外一個expect腳本(scp_key_to_node.exp),兩個腳本放在同一個目錄下:
bash腳本:
[plain]
#!/bin/bash
ssh-keygen -t dsa
for (( i = 1; i <= 100 ; i ++ ))
do
./scp_key_to_node.exp $i
done
expect腳本:
[plain]
#!/usr/bin/expect
set timeout 5
set hostno [lindex $argv 0]
spawn scp ~/.ssh/id_dsa.pub impala$hostno:~/.ssh/pub_key
expect "*password*"
send "111111\r"
spawn ssh impala$hostno "cat ~/.ssh/pub_key/ >> ~/.ssh/authorized_keys"
expect "*password*"
send "111111\r"
spawn ssh impala$hostno "chmod 600 ~/.ssh/authorized_keys"
expect "*password*"
send "111111\r"
expect eof
set可以設置超時,或者設置一個變量的值
spawn是執行一個命令
expect等待一個匹配的輸出流中的內容
send是匹配到之後向輸入流寫入的內容
[lindex $argv 0]表示腳本的第0個參數
expect eof表示讀取到文件結束符
在腳本所在的目錄下執行:
[plain]
# ./send_key.sh