]
Brian Stansberry updated WFCORE-311:
------------------------------------
Fix Version/s: 3.0.0.Alpha4
(was: 3.0.0.Alpha3)
Better error message if authentication is required to connect to the
master but no realm is associated on the slave
-------------------------------------------------------------------------------------------------------------------
Key: WFCORE-311
URL:
https://issues.jboss.org/browse/WFCORE-311
Project: WildFly Core
Issue Type: Enhancement
Components: Domain Management
Environment: RH EL 6.3 - JBoss EAP 6.2
Reporter: Riccardo Benvenuti
Assignee: Brian Stansberry
Priority: Minor
Fix For: 3.0.0.Alpha4
In JBoss 6.2 domain environment if in the host.xml file on the slave is missing the realm
in the domain-controller tag as reported below
<domain-controller>
<remote host="10.123.137.200" port="9999"/>
</domain-controller>
we get the following error:
JBoss Bootstrap Environment
JBOSS_HOME: /opt/jboss7/jboss-eap-6.2
JAVA: /usr/java/jdk1.7.0_51/bin/java
JAVA_OPTS: -Xms64m -Xmx512m -XX:MaxPermSize=256m -Djava.net.preferIPv4Stack=true
-Djboss.modules.system.pkgs=org.jboss.byteman -Djava.awt.headless=true
=========================================================================
16:45:58,529 INFO [org.jboss.modules] (main) JBoss Modules version 1.3.0.Final-redhat-2
16:45:58,746 INFO [org.jboss.as.process.Host Controller.status] (main) JBAS012017:
Starting process 'Host Controller'
[Host Controller] 16:45:59,735 INFO [org.jboss.modules] (main) JBoss Modules version
1.3.0.Final-redhat-2
[Host Controller] 16:45:59,913 INFO [org.jboss.msc] (main) JBoss MSC version
1.0.4.GA-redhat-1
[Host Controller] 16:46:00,023 INFO [org.jboss.as] (MSC service thread 1-2) JBAS015899:
JBoss EAP 6.2.0.GA (AS 7.3.0.Final-redhat-14) starting
[Host Controller] 16:46:00,991 INFO [org.xnio] (MSC service thread 1-1) XNIO Version
3.0.7.GA-redhat-1
[Host Controller] 16:46:01,010 INFO [org.xnio.nio] (MSC service thread 1-1) XNIO NIO
Implementation Version 3.0.7.GA-redhat-1
[Host Controller] 16:46:01,033 INFO [org.jboss.as] (Controller Boot Thread) JBAS010902:
Creating http management service using network interface (management) port (9990)
securePort (-1)
[Host Controller] 16:46:01,045 INFO [org.jboss.remoting] (MSC service thread 1-1) JBoss
Remoting version 3.2.18.GA-redhat-1
[Host Controller] 16:46:01,173 INFO [org.jboss.as.remoting] (MSC service thread 1-1)
JBAS017100: Listening on 10.123.137.201:9999
[Host Controller] 16:46:01,857 ERROR [org.jboss.remoting.remote.connection] (Remoting
"testjb7s1:MANAGEMENT" read-1) JBREM000200: Remote connection failed:
javax.security.sasl.SaslException: Authentication failed: all available authentication
mechanisms failed
[Host Controller] 16:46:01,869 ERROR [org.jboss.as.host.controller] (Controller Boot
Thread) JBAS010901: Could not connect to master. Aborting. Error was:
java.lang.IllegalStateException: JBAS010942: Unable to connect due to authentication
failure.
[Host Controller] 16:46:01,891 INFO [org.jboss.as.controller] (MSC service thread 1-2)
JBAS014774: Service status report
[Host Controller] JBAS014775: New missing/unsatisfied dependencies:
[Host Controller] service
jboss.server.controller.management.security_realm.ApplicationRealm.properties_authentication
(missing) dependents: [service
jboss.server.controller.management.security_realm.ApplicationRealm]
[Host Controller]
[Host Controller] 16:46:01,897 INFO [org.jboss.as.controller] (MSC service thread 1-1)
JBAS014774: Service status report
[Host Controller] JBAS014775: New missing/unsatisfied dependencies:
[Host Controller] service
jboss.server.controller.management.security_realm.ManagementRealm (missing) dependents:
[service jboss.remoting.authentication_provider.management]
[Host Controller]
[Host Controller] 16:46:01,922 INFO [org.jboss.as.controller] (MSC service thread 1-2)
JBAS014774: Service status report
[Host Controller] JBAS014776: Newly corrected services:
[Host Controller] service
jboss.server.controller.management.security_realm.ApplicationRealm.properties_authentication
(no longer required)
[Host Controller] service
jboss.server.controller.management.security_realm.ManagementRealm (no longer required)
[Host Controller]
[Host Controller] 16:46:01,927 INFO [org.jboss.as] (MSC service thread 1-2) JBAS015950:
JBoss EAP 6.2.0.GA (AS 7.3.0.Final-redhat-14) stopped in 28ms
16:46:02,245 INFO [org.jboss.as.process.Host Controller.status] (reaper for Host
Controller) JBAS012010: Process 'Host Controller' finished with an exit status of
99
16:46:02,247 INFO [org.jboss.as.process] (Thread-8) JBAS012016: Shutting down process
controller
16:46:02,247 INFO [org.jboss.as.process] (Thread-8) JBAS012015: All processes finished;
exiting
Adding the realm everything works correctly
<domain-controller>
<remote host="10.123.137.200" port="9999"
security-realm="ManagementRealm"/>
</domain-controller>
Maybe a warning message could be useful to find the problem.