Description of problem: I am unable to add new server instance to slave host in domain via CLI. Version-Release number of selected component (if applicable): EAP 6.2.0.ER3 How reproducible: always Steps to Reproduce on single node: 1. prepare env and start domain export IP=aaa.bbb.ccc.ddd // different from localhost unzip -q jboss-eap-6.2.0.ER3.zip cp -r jboss-eap-6.2/domain/ jboss-eap-6.2/domain2 # start first domain controller ./jboss-eap-6.2/bin/domain.sh & # start slave ./jboss-eap-6.2/bin/domain.sh --host-config=host-slave.xml -Djboss.domain.base.dir=jboss-eap-6.2/domain2 -Djboss.domain.master.address=127.0.0.1 -Djboss.bind.address=$IP -Djboss.bind.address.management=$IP -Djboss.bind.address.unsecure=$IP & 2. connect to CLI and execute [domain@localhost:9999 /] ./host=${slave_name}/server-config=server-four:add(group=main-server-group, socket-binding-group=full-sockets Actual results: Failed to get the list of the operation properties: "JBAS014807: Management resource '[ ("host" => "dhcp-4-200.brq.redhat.com"), ("server-config" => "server-four") ]' not found" Additional info: -Regression against EAP 6.2.0.ER2 -Adding server via web console works
Does it work if you do this? ./host=dhcp-4-200.brq.redhat.com/server-config=server-four:add(group=main-server-group, socket-binding-group=full-sockets) i.e. no expression. Also, I assume the missing closing paren in that add operation in the description was just a cut-and-paste error when filing the BZ.
Your assumptions are correct :). No, it is the same: [domain@localhost:9999 /] ./host=dhcp-4-200.brq.redhat.com/server-config=server-four:add(group=main-server-group, socket-binding-group=full-sockets) Failed to get the list of the operation properties: "JBAS014807: Management resource '[ ("host" => "dhcp-4-200.brq.redhat.com"), ("server-config" => "server-four") ]' not found"
The issue no longer occurs in EAP 6.2.0 ER4.