自动化部署脚本

Posted skorzeny

tags:

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

boot.sh

#!/bin/bash

SERVERS="node-3.itcast.cn node-4.itcast.cn"
PASSWORD=123456
BASE_SERVER=172.16.203.100

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.sh [email protected]$SERVER:/root
ssh [email protected]$SERVER /root/install.sh
done

 

 

 

 

 

install_everyone.sh

#!/bin/bash

BASE_SERVER=172.16.203.100
yum install -y wget
wget $BASE_SERVER/soft/jdk-7u45-linux-x64.tar.gz
tar -zxvf 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

 

以上是关于自动化部署脚本的主要内容,如果未能解决你的问题,请参考以下文章

设置ssh免密码登录脚本(hadoop自动化部署脚本一)

再见 Jenkins!几行脚本搞定自动化部署,这款神器有点厉害

Jenkins持续集成-自动化部署脚本的实现《python》

linux 自动化部署脚本

RAC环境部署自动化shell脚本

自动化部署脚本--linux执行sh脚本