ActiveMQ基本配置

Posted

tags:

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

一、配置登录监视控制台

1,启用登录验证(authenticate属性的值设置为true表示需要登录验证)

e:\apache-activemq-5.14.5\conf\jetty.xml

<bean id="securityConstraint" class="org.eclipse.jetty.util.security.Constraint">
     <property name="name" value="BASIC" />
     <property name="roles" value="user,admin" />
     <!-- set authenticate=false to disable login -->
     <property name="authenticate" value="true" />
</bean>

登录的用户配置在文件 e:\apache-activemq-5.14.5\conf\jetty-realm.properties


2,修改web的访问端口

jetty.xml

<bean id="jettyPort" class="org.apache.activemq.web.WebConsolePort" init-method="start">
      <!-- the default port number for the web console -->
      <property name="host" value="0.0.0.0"/>
      <property name="port" value="8161"/>
</bean>

二 、ActiveMQ的运行日志配置

e:\apache-activemq-5.14.5\conf\log4j.properties

默认存放在data文件夹下的activemq.log中。


以上是关于ActiveMQ基本配置的主要内容,如果未能解决你的问题,请参考以下文章

wildfly 实践5 ---分布式服务中的JMS服务访问

Apache ActiveMQ实战-基本安装配置与消息类型

activeMQ 持久化配置

JMS Activemq实战例子demo

ActiveMQ怎么实现两台服务器之间的通讯。比如A发消息给B,B能收到。具体的代码和配置。

记录activemq 配置mysql 持久化入得坑