Linux 集群免密配置脚本

参考自:https://blog.csdn.net/zhanggqianglovec/article/details/103384458

准备工作:

  1. 安装expect
    yum install expect -y

#!/usr/bin/bash

expect << EOF
set timeout 10
# 创建公有密钥	
spawn ssh-keygen -t rsa
expect {
        "*to save the key" {send "\n";exp_continue}
        "*(y/n)" {send "y\r";exp_continue}
        "Enter passphrase" {send "\n";exp_continue}
        "Enter same passphrase" {send "\n";exp_continue}
}
EOF
 
#  获取/etc/hosts文件中除localhost的映射关系
ip_list=`grep -v 'localhost' /etc/hosts | awk -F ' ' '{print $1,$2}'`
for ip in $ip_list
do
expect << EOF
        set timeout 2
        # 发送公有密钥
        spawn ssh-copy-id root@$ip
        expect {
                "yes/no" {send "yes\r";exp_continue}
                "password" {send "root\r";exp_continue}
        }
	
        # 拷贝/etc/hosts文件到远程机器
        spawn scp /etc/hosts $ip:/etc
        expect {
                "yes/no" {send "yes\r";exp_continue}
                "password" {send "root\r";exp_continue}
        }
EOF
done




 #!/usr/bin/bash
 
#ip列表&登录密码
passwd='huqy'
ip_list=("192.168.88.128" "192.168.88.130" "192.168.88.131")


for ip in ${ip_list[*]}
do
 # 生成秘钥对
 expect << EOF
   set timeout 2
   spawn ssh root@$ip
   expect {
      "yes/no" { send "yes\n";exp_continue }
      "password" { send "$passwd\n"}
   }
   expect {
      "*#" {send "ssh-keygen -t rsa\r";exp_continue}
      "*to save the key" {send "\n";exp_continue}
      "Overwrite (y/n)" {send "y\r";exp_continue}
      "Enter passphrase" {send "\n";exp_continue}
      "Enter same passphrase" {send "\n"}
   }
   expect {"*#" {send "exit\r"}}
EOF

done

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值