发布时间:2018-07-22作者:laosun阅读(20096)
首先修改网页登录密码
1: 打开安装目录,进入conf目录,找到jetty.xml
上边的 authenticate 修改成true
然后打开同目录下的jetty-realm.properties。
用户名:密码,角色; 根据这个修改即可。修改完成后,重新启动,使用新的账号和密码即可登录成功。
修改使用账号密码:
当前目录下,找到activemq.xml。滑到最底下
在</broker>节点前添加以下代码:
<!-- 添加访问ActiveMQ的账号密码 --> <plugins> <simpleAuthenticationPlugin> <users> <authenticationUser username="laosun" password="laosun" groups="users,admins"/> </users> </simpleAuthenticationPlugin> </plugins>
如图所示:
然后重启服务,在程序中修改一下用户名和密码即可。
如下所示:
ActiveMQConnectionFactory activeMQConnectionFactory = new ActiveMQConnectionFactory(); // activeMQConnectionFactory.setUserName(ActiveMQConnection.DEFAULT_USER); // activeMQConnectionFactory.setPassword(ActiveMQConnection.DEFAULT_PASSWORD); activeMQConnectionFactory.setUserName("laosun"); activeMQConnectionFactory.setPassword("laosun"); activeMQConnectionFactory.setBrokerURL(url);
版权属于: 技术客
原文地址: https://www.sunjs.com/article/detail/e15c588dd62b40b5bcab15635507ef54.html
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。