expect一键实现集群ssh免密登入
expect具有非交互式功能
岢岚网站建设公司创新互联建站,岢岚网站设计制作,有大型网站制作公司丰富经验。已为岢岚成百上千家提供企业网站建设服务。企业网站搭建\成都外贸网站建设公司要多少钱,请找那个售后服务好的岢岚做网站的公司定做!
yum -y install expect
mkpasswd -l 20 #<==生成随机字符串,-l参数指定生成字符串的长度
非交互密钥分发
添加用户(所有机器)
useradd jiege1
echo 123456|passwd --stdin jiege1
id jiege1
10创建密钥对
su - jiege1
ssh-keygen -t dsa -P '' -f ~/.ssh/id_dsa>/dev/null 2>&1
10一键分发公钥expect脚本没指定主机
vim fenfa_sshkey.exp
#!/usr/bin/expect
if { $argc != 2 } {
send_user"usage:expect fenfa_sshkey.exp file host\n"
exit
}
#define var
set file [lindex $argv 0]
set host [lindex $argv 1]
set password "123456"
#spawn scp /etc/hosts root@10.0.0.142:/etc/hosts
#spawn scp -P6666 $file jiege1@$host:$dir
spawn ssh-copy-id -i $file "-p6666 jiege1@$host"
expect {
"yes/no" {send "yes\r";exp_continue}
"*password" {send "$password\r"}
}
expect eof
exit -onexit {
send_user"jiege say good bye to you!\n"
}
expect fenfa_sshkey.exp .ssh/id_dsa.pub 192.168.169.11
#需手动输入公钥和ip,但是不用手动输yes和密码了(expect非交互式功能)可以把fenfa_sshkey.exp写入脚本一键实现集群通过主服务器ssh免密登入
批量写入多台主机
vim fenfa_sshkey.sh
#!/bin/sh
. /etc/init.d/functions
for ip in 11 12 13 14 15
do
expect fenfa_sshkey.exp ~/.ssh/id_dsa.pub 192.168.169.$ip >/dev/null 2>&1
if [ $? -eq 0 ];then
action "$ip" /bin/true
else
action "$ip" /bin/false
fi
done
注意此脚本要和fenfa_sshkey.exp一个目录
网页标题:expect一键实现集群ssh免密登入
分享地址:http://scyanting.com/article/pjiopi.html