Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change password admin user activeMQ 5.9 new web console

Tags:

activemq

I would like to change password for "admin". How to achieve this in 5.9 version ?

when I use the old web console I can not connect with admin/admin (http://myhost.com:8161/admin) but I can in new web console (http://myhost.com:8161/hawtio)

Thanks for your help.

like image 211
user2401221 Avatar asked Feb 11 '14 15:02

user2401221


People also ask

How do I change my ActiveMQ password?

Change the default administrative username and password of Apache ActiveMQ by editing the file apache-activemq-x.x.x/conf/jetty-realm. properties.

How do I access the ActiveMQ Web console?

To access the management console use a browser and go to the URL http://localhost:8161/console. A login screen will be presented, if your broker is secure, you will need to use a user with admin role, if it is unsecure simply enter any user/password.

What is the default username and password for ActiveMQ?

Monitoring ActiveMQ The default username and password is admin/admin. You can configure this in the conf/jetty-real. properties file.


1 Answers

Look at the file apache-activemq-5.9.1/conf/jetty-realm.properties.
The format is: username: password, rolename. The default values are: admin:admin,admin. Therefore, changing the second value will update the password. admin: newpassword, admin.

like image 65
Ted Avatar answered Nov 04 '22 01:11

Ted