1. 程式人生 > >ActiveMQ基本配置

ActiveMQ基本配置

activemq.xml jetty.xml

一、配置登錄監視控制臺

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基本配置