设为首页 收藏本站
查看: 1760|回复: 0

[经验分享] ActiveMq+zookeeper+levelDB集群整合配置

[复制链接]

尚未签到

发表于 2015-9-6 09:56:46 | 显示全部楼层 |阅读模式
ActiveMq+zookeeper+levelDB集群整合配置

  环境:linux系统,jdk1.7  三台linux系统电脑。我这里使用一台window,分别远程3台linux电脑。三台电脑的ip分别为10.0.88.10 ,10.0.88.11 ,10.0.88.12
  第一步:下载activemq 和zookeeper,levelDB会activemq自带有,所以不需要下载,把下载好的压缩包发送到所有的linux上,(我这里是把下载好的压缩包放在当前window下的tomcat,root目录下,可在linux终端上使用命令:curl -o activeMq.tar.gz http://10.0.10.37:8080/apache-linux-activemq-5.11.1-bin.tar.gz把activemq下载下来)关键就是配置好zookeeper集群和activemq集群。
  第二步:登录linux系统,在某个目录下新建文件activemq,使用curl -o activeMQ.tar.gz  http://10.0.10.37:8080/apache-linux-activemq-5.11.1-bin.tar.gz 下载activeMQ.tar.gz,相应的把zookeeper.tar.gz下载到activemq目录下,分别解压这两个文件放在activeMQ文件夹下,和zookeeper文件夹下。
  第三步:当linux系统的所有的压缩包都解压好了,所有的文件都准备好了, zookeeper比如在目录/home/activemq/zookeeper目录下,activemq在/home/activemq/activemq目录下,那么我们先来配置zookeeper,在zookeeper/conf目录下找到zoo_sample.cfg文件,使用命令cp  -f zoo_sample.cfg zoo.cfg 复制成zoo.cfg文件,使用命令vi zoo.cfg  再按键盘I,进入编辑状态,修改zoo.cfg内容为

  # The number of milliseconds of each tick
  tickTime=2000
  # The number of ticks that the initial
  # synchronization phase can take
  initLimit=10
  # The number of ticks that can pass between
  # sending a request and getting an acknowledgement
  syncLimit=5
  # the directory where the snapshot is stored.
  # the port at which the clients will connect
  clientPort=2181
  # the directory where the snapshot is stored.
  dataDir=/home/ activemq/zookeeper/data/data
  # the port at which the clients will connect
  dataLogDir=/home/activemq/zookeeper/data/log
  # add diffenrent server
  server.1=10.0.88.10:2888:3888
  server.2=10.0.88.11:2888:3888
  server.3=10.0.88.12:2888:3888
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  

  这里有dataDir=/home/ activemq/zookeeper/data/data和
  dataLogDir=/home/activemq/zookeeper/data/log
  如果没有这些目录,我们需要新建这些目录
         建好目录之后,在dataDir目录下,新建myid文件,使用命令:touch  myid 新建文件,内容为当前机子ip所对应的zoo.cfg中server.x中的x,比如:按照上面配置zoo.cfg当前电脑ip为10.0.88.12,则myid的内容就为3,这里注意:myid文件中不能留任何空格,空行,zoo.cfg文件中的注释#与注释内容之间需要加一个空格,不是注释的,前面不能留空格和不能重写相同的变量。

第四步:上面配置完之后,需要配置一下环境变量,方便操作,先使用命令才cd /进入根目录,使用root权限,使用vi /etc/profile,编辑profile文件,在PATH面前添加配置如下:

export ZOOKEEPER=/home/activemq/zookeeper

export PATH=$PATH:$ZOOKEEPER/bin:$ZOOKEEPER/conf

这里注意conf目录也要添加进来,要不可能会报错的

配置好之后,使用命令:source  /etc/profile 使配置生效。

第五步:配置好上述之后,接下来就是测试了

使用zkServer.sh start 命令启动zookeeper,中途可能会出现一些错误,当出现错误或者查看zkServer.sh status命令的时候,不正常,可以查看dataDir或者dataLogDir目录下的zookeeper.out文件,里面有相应的启动记录,启动每个电脑的zookeeper服务器时,使用zkServer.sh status 查看状态,如果如图有出现红圈中的mode字样说明配置成功了:



在配置过程中,我遇到的问题,有端口被占用的,弄了好久,后来还是解决了,端口占用的进程名QuorumPeerMain这也是zookeeper进程名称,使用命令

ps -ef | grep QuorumPeerMain 查出进程ID,使用kill -9  进程ID  结束进程。




Zookeeper配置大概就这些了


下面我们配置activemq

配置activemq比较简单

自从activemq5.9.0开始,activemq的集群实现方式取消了传统的Master-Slave方式,增加了基于zookeeper+leveldb的实现方式,其他两种方式:目录共享和数据库共享依然存在。本文主要阐述基于zookeeper和leveldb搭建activemq集群,这里需要特别提醒,本文实现的集群仅提供主备功能,避免单点故障,没有负载均衡功能。

在conf目录下找到activemq.xml 把里面内容的

<kahaDB directory="${activemq.data}/kahadb"/>

替换成




  <replicatedLevelDB
  
  directory="${activemq.data}/leveldb"
  
  replicas="3"
  
  bind="tcp://0.0.0.0:0"
  
  zkAddress="10.0.88.10:2181,10.0.88.11:2181,10.0.88.12:2181"
  
  <!-- zkPassword="password"-->
  
  hostname="10.0.88.10"
  
  sync="local_disk"
  
  zkPath="/activemq/leveldb-stores"
  
  />












这里的hostname要写当前机子ip

接下来配置环境变量,方便操作。由于我的系统是64位的,所以我在profile后新添加一条语句:

export  $PATH:/home/ activemq /activemq /bin/linux-x86-64

不同的位数系统,选择不同的activemq,如果是32位的好像是

export  $PATH:/home/ activemq /activemq /bin/linux-x86-32

那么配置完成了,使用source  /etc/profile使命令生效

activemq start 启动

在这里要先启动zookeeper 在启动activemq

配置好了,测试一下,使用命令:http://10.0.88.10:8161/admin/index.jsp如果能运行,说明activemq启动成功,如果把10.0.88.10上的activemq关闭了,这个链接还可以访问,说明配置已经成功。

注意事项:如果activemq启动出错的,我们可以在启动目录下的wrapper.log文件查看哪里出错。

配置注意事项

  1、  zoo.cfg文档开头和结尾不能留空格
  2、  myid前后不能留换行和空格
  3、  zookeeper 进程名为QuorumPeerMain
  4、  zoo.cfg配置文件写法需要注意,不能重写同一个变量
activemq在不同权限下可以启动两个不同的activemq服务,如果某个机子上有activemq关闭了,客户端还可以访问,说明还有一个activemq在启动

优化配置待续

修改activemq文件改变内存ACTIVEMQ_OPTS_MEMORY="-Xms256M -Xmx384M -XX:PermSize=256M -XX:MaxPermSize=384M"

注意的问题:

1、         通过failover方式进行连接,多个AMQ实例地址使用英文逗号隔开,当某个实例断开时会自动重连,但如果所有实例都失效,failover默认情况下会无限期的等待下去,不会有任何提示

2、        不要频繁的建立和关闭连接JMS使用长连接方式,一个程序,只要和JMS服务器保持一个连接就可以了,不要频繁的建立和关闭连接。频繁的建立和关闭连接,对程序的性能影响还是很大的。这一点和jdbc还是不太一样的。

3、      JMS的Connection的start()和stop()方法代价很高,不能经常调用。我们试用的时候,写了个jms的connection pool,每次将connection取出pool时调用start()方法,归还时调用stop()方法,然而后来用jprofiler发现,一般的 cpu时间都耗在了这两个方法上

4、      网址http://www.blogjava.net/livery/articles/316269.html


代码:activemq.xml

  <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at
  
  http://www.apache.org/licenses/LICENSE-2.0
  
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
  -->
  <!-- START SNIPPET: example -->
  <beans
  xmlns="http://www.springframework.org/schema/beans"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd">
  
  <!-- Allows us to use system properties as variables in this configuration file -->
  <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  <property name="locations">
  <value>file:${activemq.conf}/credentials.properties</value>
  </property>
  </bean>
  
  <!-- Allows accessing the server log -->
  <bean id="logQuery" class="io.fabric8.insight.log.log4j.Log4jLogQuery"
  lazy-init="false" scope="singleton"
  init-method="start" destroy-method="stop">
  </bean>
  
  <!--
  The <broker> element is used to configure the ActiveMQ broker.
  -->
  
  <broker xmlns="http://activemq.apache.org/schema/core" brokerName="localhost" dataDirectory="${activemq.data}" persistent="true" >
  <destinationPolicy   >
  <policyMap>
  <policyEntries>
  
  <policyEntry topic=">" topicPrefetch="10000" producerFlowControl="false" useCache="true" >
  <!-- The constantPendingMessageLimitStrategy is used to prevent
  slow topic consumers to block producers and affect other consumers
  by limiting the number of messages that are retained
  For more information, see:
  
  http://activemq.apache.org/slow-consumer-handling.html
  
  -->
  
  <pendingSubscriberPolicy>
  <vmCursor />
  </pendingSubscriberPolicy>
  <pendingDurableSubscriberPolicy>
  <storeDurableSubscriberCursor/>
  </pendingDurableSubscriberPolicy>
  <!-- <pendingMessageLimitStrategy>
  <constantPendingMessageLimitStrategy limit="1000"/>
  </pendingMessageLimitStrategy>-->
  </policyEntry>
  <policyEntry queue=">" producerFlowControl="true" queuePrefetch="10000" memoryLimit="100mb" useCache="true">
  <pendingQueuePolicy>
  <vmQueueCursor/>
  </pendingQueuePolicy>
  
  <pendingDurableSubscriberPolicy>
  <storeDurableSubscriberCursor/>
  </pendingDurableSubscriberPolicy>
  
  <pendingQueuePolicy>
  <storeCursor />
  </pendingQueuePolicy>
  
  <slowConsumerStrategy>
  <abortSlowConsumerStrategy  abortConnection="false"/><!-- 30second -->
  </slowConsumerStrategy>
  </policyEntry>
  </policyEntries>
  </policyMap>
  </destinationPolicy>
  <networkConnectors>
  <networkConnector uri="static:(tcp://10.0.88.10:61616,tcp://10.0.88.11:61616,tcp://10.0.88.12:61616)"/>
  </networkConnectors>
  
  
  <!--
  The managementContext is used to configure how ActiveMQ is exposed in
  JMX. By default, ActiveMQ uses the MBean server that is started by
  the JVM. For more information, see:
  
  http://activemq.apache.org/jmx.html
  -->
  <managementContext>
  <managementContext createConnector="false"/>
  </managementContext>
  
  <!--
  Configure message persistence for the broker. The default persistence
  mechanism is the KahaDB store (identified by the kahaDB tag).
  For more information, see:
  
  http://activemq.apache.org/persistence.html
  -->
  <persistenceAdapter>
  <replicatedLevelDB
  
  directory="${activemq.data}/leveldb"
  
  replicas="3"
  
  bind="tcp://0.0.0.0:0"
  
  zkAddress="10.0.88.10:2181,10.0.88.11:2181,10.0.88.12:2181"
  
  hostname="10.0.88.12"
  
  sync="local_disk"
  
  zkPath="/activemq/leveldb-stores"
  
  />
  
  </persistenceAdapter>
  
  
  <!--
  The systemUsage controls the maximum amount of space the broker will
  use before disabling caching and/or slowing down producers. For more information, see:
  http://activemq.apache.org/producer-flow-control.html
  -->
  <systemUsage>
  <systemUsage>
  <memoryUsage>
  <memoryUsage percentOfJvmHeap="70" />
  </memoryUsage>
  <storeUsage>
  <storeUsage limit="100 gb"/>
  </storeUsage>
  <tempUsage>
  <tempUsage limit="50 gb"/>
  </tempUsage>
  </systemUsage>
  </systemUsage>
  
  <!--
  The transport connectors expose ActiveMQ over a given protocol to
  clients and other brokers. For more information, see:
  
  http://activemq.apache.org/configuring-transports.html
  -->
  <transportConnectors>
  <!-- DOS protection, limit concurrent connections to 1000 and frame size to 100MB -->
  <transportConnector name="openwire" uri="tcp://0.0.0.0:61616?maximumConnections=10000&amp;wireFormat.maxFrameSize=1048576000"/>
  <transportConnector name="amqp" uri="amqp://0.0.0.0:5672?maximumConnections=1000&amp;wireFormat.maxFrameSize=104857600"/>
  <transportConnector name="stomp" uri="stomp://0.0.0.0:61613?maximumConnections=1000&amp;wireFormat.maxFrameSize=104857600"/>
  <transportConnector name="mqtt" uri="mqtt://0.0.0.0:1883?maximumConnections=1000&amp;wireFormat.maxFrameSize=104857600"/>
  <transportConnector name="ws" uri="ws://0.0.0.0:61614?maximumConnections=1000&amp;wireFormat.maxFrameSize=104857600"/>
  </transportConnectors>
  
  <!-- destroy the spring context on shutdown to stop jetty -->
  <shutdownHooks>
  <bean xmlns="http://www.springframework.org/schema/beans" class="org.apache.activemq.hooks.SpringContextHook" />
  </shutdownHooks>
  
  </broker>
  
  <!--
  Enable web consoles, REST and Ajax APIs and demos
  The web consoles requires by default login, you can disable this in the jetty.xml file
  
  Take a look at ${ACTIVEMQ_HOME}/conf/jetty.xml for more details
  -->
  
  <import resource="jetty.xml"/>
  
  </beans>
  <!-- END SNIPPET: example -->







































运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-110009-1-1.html 上篇帖子: Zookeeper Canary 下篇帖子: ZooKeeper系列2:ZooKeeper的运行
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表