linux集群自动化搭建(生成密钥对+分发公钥+远程批量执行脚本) [操作系统入门]
第一步,服务器准备
这里使用docker模拟几台服务器,分别命名为node2,node3,node4(使用镜像chenqionghe/ubuntu,密码统一为88888888),生产环境为ip或host
docker run -d --name node2 -p 2223:22 chenqionghe /ubuntudocker run -d --name node3 -p 2224:22 chenqionghe /ubuntu
docker run -d --name node4 -p 2225:22 chenqionghe /ubuntu
还得有一台主控制服务器node1,负责操作所有的服务器节点
docker run -d --name node1 -p 2222:22 --link node2:node2 --link node3:node3 --link node4:node4 chenqionghe/ubuntu
初始化完成后进入node1节点
ssh [email protected] -p 2222
安装必须软件
apt-get install expect -y
创建存放脚本的目录~/env
mkdir -p ~/env && cd ~/env
这里先模拟一个简单的安装包scripts/install.sh,安装vim命令
mkdir scripts cat > scripts/install.sh <<EOF
#!/bin/bash bash
apt-get installvim -y
EOF
创建机器列表配置文件,vim nodes.txt
node2node3
node4
第二步 编写自动化脚本
1.无交互ssh-keygen生成密钥对脚本,vim ssh-keygen.exp
#!/usr/bin/expect#set enter "
"
spawn ssh-keygen
expect {
"*(/root/.ssh/id_rsa)" {send "";exp_continue}
"*(empty for no passphrase)" {send "";exp_continue}
"*again" {send ""}
}
expect eof
2.无交互分发公钥脚本,vim send-sshkey.exp
#!/usr/bin/expectif { $argc != 2 } {
send_user "usage: expect send-sshkey.exp file host
"
exit
}
#define var
set file [lindex $argv 0]
set host [lindex $argv 1]
set password "88888888"
spawn ssh-copy-id -i $file -p 22 [email protected]$host
expect {
"yes/no" {send "yes";exp_continue}
"*password" {send "$password"}
}
expect eof
3.远程批量执行ssh脚本, vim mssh.sh
#!/bin/bashPort=22
if [ $# -lt 1 ];then
echo "Usage: `basename $0` command"
exit
fi
echo [email protected]
for v in `cat nodes.txt`
do
ssh -t -p ${Port} [email protected]${v} [email protected]
if [ $? -eq 0 ];then
echo "执行成功:$v"
else
echo "执行失败:$v"
fi
done
4.自动化部署脚本,vim auto-deploy.sh
#!/usr/bin/env bash#机器列表
HostList=`cat nodes.txt`
#端口号
Port=22
# 1.无交互生成密钥对
if [ ! -f ~/.ssh/id_rsa.pub ];then
expect ssh-keygen.exp
fi
# 2.无交互分发公密钥
for v in ${HostList}
do
expect send-sshkey.exp ~/.ssh/id_rsa.pub ${v}
if [ $? -eq 0 ];then
echo "公钥-发送成功:$v"
else
echo "公钥-发送失败:$v"
fi
done
# 3.分发脚本文件(安装软件包)
for v in ${HostList}
do
scp -P ${Port} -rp ~/env/scripts [email protected]${v}:~
if [ $? -eq 0 ];then
echo "scripts-发送成功:$v"
else
echo "scripts-发送失败:$v"
fi
done
# 4.使用脚本文件安装
for v in ${HostList}
do
ssh -t -p ${Port} [email protected]${v} /bin/bash ~/scripts/install.sh
done
到这里所有的文件已经创建完成,整个env目录结构如下
├── auto-deploy.sh├── mssh.sh
├── nodes.txt
├── scripts
│ └── install.sh
├── send-sshkey.exp
└── ssh-keygen.exp
第三步 执行自动化脚本查看效果
sh auto-deploy.sh
执行成功结果
spawn ssh-keygen...
公钥-发送成功:node2
...
公钥-发送成功:node3
...
公钥-发送成功:node4
install.sh 100% 40 41.4KB/s 00:00
scripts-发送成功:node2
install.sh 100% 40 45.0KB/s 00:00
scripts-发送成功:node3
install.sh 100% 40 39.9KB/s 00:00
scripts-发送成功:node4
...
Connection to node4 closed.
出现上面的结果代表3个node节点已经初始化完成,拷贝公钥+安装软件成功!
我们再来执行一下远程命令脚本,查看所有服务器系统类型
sh mssh.sh "cat /etc/os-release|head -n 1"
执行结果如下
cat /etc/os-release|head -n 1NAME="Ubuntu"
Connection to node2 closed.
执行成功:node2
NAME="Ubuntu"
Connection to node3 closed.
执行成功:node3
NAME="Ubuntu"
Connection to node4 closed.
执行成功:node4
这样就实现了自动化创建密钥对+分发公钥+所有服务器软件环境安装+批量远程执行脚本mssh.sh,麻雀虽小,五脏俱全,绝对是干货!
linux集群自动化搭建(生成密钥对+分发公钥+远程批量执行脚本)
以上是 linux集群自动化搭建(生成密钥对+分发公钥+远程批量执行脚本) [操作系统入门] 的全部内容, 来源链接: utcz.com/z/518797.html