Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AMQ119099: Unable to authenticate cluster user: ACTIVEMQ.CLUSTER.ADMIN.USER

Tags:

wildfly-10

When I was starting Wildfly 10 with full-ha profile, I was getting below error in the log file.

AMQ119099: Unable to authenticate cluster user: ACTIVEMQ.CLUSTER.ADMIN.USER

Even after this error, server was in running state.

like image 508
Indraraj Avatar asked Sep 05 '16 09:09

Indraraj


1 Answers

I was getting this error because I have not changed the default password of subsystem messaging-activemq.

This error is gone after changing below line of domain.xml

<cluster password="${jboss.messaging.cluster.password:CHANGE ME!!}"/>

to

<cluster password="${jboss.messaging.cluster.password:mypass}"/>
like image 97
Indraraj Avatar answered Sep 19 '22 16:09

Indraraj