mq安装脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mq安装脚本相关的知识,希望对你有一定的参考价值。
#!/bin/bash
local_ip=`ifconfig|awk -F ‘[ :]+‘ ‘NR==2 {print $4}‘`
cd /usr/local/src/
wget http://192.168.5.222/activemq-cluster01.tar.gz
tar zxvf activemq-cluster01.tar.gz -C /opt
cd /opt/activemq-cluster01/conf
sed -i ‘s/10.46.28.217/‘$local_ip‘/g‘ activemq.xml
cp -rp /opt/activemq-cluster01 /opt/activemq-cluster02
cd /opt/activemq-cluster02/conf
sed -i ‘s/61616/61617/g‘ activemq.xml
sed -i ‘s/replicas="1"/replicas="2"/g‘ activemq.xml
sed -i ‘s/8161/8162/g‘ jetty.xml
sh /opt/activemq-cluster01/bin/activemq start
sh /opt/activemq-cluster02/bin/activemq start
以上是关于mq安装脚本的主要内容,如果未能解决你的问题,请参考以下文章