管理后台密码
(1)ActiveMQ使用的是jetty服务器打开conf\jetty.xml 找到
(2)修改控制台的登录用户名密码conf/jetty-realm.properties文件中
## —————————————————————————————————————- 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. —————————————————————————————————————- Defines users that can access the web (console, demo, etc.) username: password [,rolename …] admin: admin, adminuser: user, user用户名 :密码:角色名lwp: lwp123, admin
2.消息消费者密码认证
(1)修改activemq.xml配置,需要新增一个插件,在
(2)用户名密码文件为:credentials.properties
## —————————————————————————————————————- 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. —————————————————————————————————————- Defines credentials that will be used by components (like web console) to access the brokeractivemq.username=systemactivemq.password=managerguest.password=password
然后在java client 处就需要设置密码才能连接
ConnectionFactory connectionFactory = new ActiveMQConnectionFactory("system", "manager", "tcp://localhost:61616");