集群安装脚本

Posted h0000dh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了集群安装脚本相关的知识,希望对你有一定的参考价值。

#!/bin/bash
#执行之前确认BASE_SERVER已经生成了公钥和私钥  ssh-keygen -t rsa 默认4个enter
#交互式输入脚本-----------免密登陆脚本
SERVERS="192.168.1.111 192.168.1.104"
PASSWORD=a
BASE_SERVER=192.168.1.110

auto_ssh_copy_id() {
    expect -c "set timeout -1;
        spawn ssh-copy-id $1;
        expect {
            *(yes/no)* {send -- yes\r;exp_continue;}
            *assword:* {send -- $2\r;exp_continue;}
            eof        {exit 0;}
        }";
}

ssh_copy_id_to_all() {
    for SERVER in $SERVERS
    do
        auto_ssh_copy_id $SERVER $PASSWORD
    done
}

ssh_copy_id_to_all


for SERVER in $SERVERS
do
    scp install_everyone.sh root@$SERVER:/root
    ssh root@$SERVER /root/install_everyone.sh
done

install_everyone.sh

#!/bin/bash

BASE_SERVER=192.168.1.110
yum install -y wget
wget $BASE_SERVER/soft/jdk-7u45-linux-x64.tar.gz
tar -zxf jdk-7u45-linux-x64.tar.gz -C /usr/local
cat >> /etc/profile << EOF
export JAVA_HOME=/usr/local/jdk1.7.0_45
export PATH=\$PATH:\$JAVA_HOME/bin
EOF
source /etc/profile
service iptables stop
chkconfig iptables off

 

以上是关于集群安装脚本的主要内容,如果未能解决你的问题,请参考以下文章

集群安装脚本

shell脚本一键安装redis集群

代码片段:Shell脚本实现重复执行和多进程

入门K8s:一键脚本搭建Linux服务器集群

linux安装zookeeper集群保姆教程,包括集群启停脚本

入门K8s:一键脚本搭建Linux服务器集群