一:activeMQ的管理后台 localhost:8161/admin 默认用户名密码admin admin
默认端口8061,采用的JETTY服务器,所以修改端口啊密码啊也是改JETTY的配置l
我已把密码改为weigq 端口改为8191
注意:
<bean id="securityConstraint" class="lipse.jetty.util.security.Constraint">
<property name="name" value="BASIC" />
<property name="roles" value="admin" />
<property name="authenticate" value="true" />
</bean>
第三个属性authenticate要为true.
端口部分的
<bean id="Server" class="lipse.jetty.server.Server" init-method="start"
destroy-method="stop">
<property name="connectors">
<list>
<bean id="Connector" class="lipse.jetty.server.nio.SelectChannelConnector">
<property name="port" value="8191" />
</bean>
二:activeMQ消息使用者的端口,用户名,密码
在l中修改。
activemq修改admin密码端口容易改,默认是61616,我给改为61617
要改用户名密码,须在<broker>标签里的<systemUsage>标签前加入
<!-- plugins is added by weigq .use for setting uid and pwd by msg users -->
<plugins>
<simpleAuthenticationPlugin>
<users>
<authenticationUser username="${activemq.username}" password="${activemq.password}" groups="users,admins"/>
</users>
</simpleAuthenticationPlugin>
</plugins>
用户名密码在credentials.properties 中修改
发现另一个监听端口:amqp://0.0.0.0:5672不清楚如何使用。建议可注释掉
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论