栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 系统运维 > 运维 > Linux

Linux 集群免密配置脚本

Linux 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Linux 集群免密配置脚本

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

准备工作:

    安装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 "yr";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 "yesr";exp_continue}
                "password" {send "rootr";exp_continue}
        }
	
        # 拷贝/etc/hosts文件到远程机器
        spawn scp /etc/hosts $ip:/etc
        expect {
                "yes/no" {send "yesr";exp_continue}
                "password" {send "rootr";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 "yesn";exp_continue }
      "password" { send "$passwdn"}
   }
   expect {
      "*#" {send "ssh-keygen -t rsar";exp_continue}
      "*to save the key" {send "n";exp_continue}
      "Overwrite (y/n)" {send "yr";exp_continue}
      "Enter passphrase" {send "n";exp_continue}
      "Enter same passphrase" {send "n"}
   }
   expect {"*#" {send "exitr"}}
EOF

done

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/733751.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号