Description of problem: There is wrong default property name for management-native Port Number on Socket Binding (domain-host) screen. Version-Release number of selected component (if applicable): EAP 6.2.0.CR1 How reproducible: Always Steps to Reproduce: 1. Run gui installation, go to Socket Bindings screen using default configuration. 2. Choose to configure custom port bindings, select to Configure ports for domain mode, and press Next. 3. Observe System property for management-native Port Number Actual results: jboss.domain.master.port Expected results: jboss.management.native.port Additional info: - console installer is fine To make this clear, there are three important properties for domain management - jboss.management.native.port - jboss.management.http.port - jboss.domain.master.port (only in host-slave.xml) jboss.management.native.port & jboss.management.http.port should be configurable, but we might left the jboss.domain.master.port in host-slave.xml as it is as it is different property to jboss.management.native.port. Sorry for inconvenience I should have realize this before.
Fixed default to use property "jboss.management.native.port" Also found bugs that changing properties on Socket Binding (domain-host) panel did not effect appropriate .xml files in console mode. This has been fixed in izpack. http://git.app.eng.bos.redhat.com/jbossas-installer.git/commit/?h=eap-6.2&id=f6d29d86990cceb0a90853fb25c11c4ad022173e
jboss.domain.master.port in host-slave.xml should be left as it is (see description) I can see two issues in host-slave.xml with CR2: - jboss.domain.master.port is renamed to jboss.management.native.port (already covered, see BZ1026241) - jboss.management.native.port is used for jboss.domain.master.port, these are different ports and shouldn't be misconfigured. Installer shouldn't touch to: <domain-controller> <remote host="${jboss.domain.master.address}" port="${jboss.domain.master.port:9999}" security-realm="ManagementRealm"/> </domain-controller> inside host-slave.xml unless we add one more field to domain socket configuration (I don't think this is really needed). Just leave the domain-controller element in host-slave and fix the BZ1026241 and it should be fine.
I'll close this one as the original issue with wrong property name in installer was fixed and move the rest of the issue into BZ1026241 as it seem to be related. Verified on EAP 6.2.0.CR2