8

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.

Indraraj
  • 255
  • 3
  • 13

2 Answers2

12

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}"/>
Camilo Silva
  • 8,283
  • 4
  • 41
  • 61
Indraraj
  • 255
  • 3
  • 13
0

It's required to specify a password for the cluster of messaging-activemq subsystem. It can be set using the following system property when starting the wildfly server:

... -Djboss.messaging.cluster.password=Abcd1234
Camilo Silva
  • 8,283
  • 4
  • 41
  • 61