| Summary: | Values for port offset configuration are doubled in domain's host files. | ||
|---|---|---|---|
| Product: | [JBoss] JBoss Enterprise Application Platform 6 | Reporter: | Petr Kremensky <pkremens> |
| Component: | Installer | Assignee: | Miles Tjandrawidjaja <mtjandra> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Petr Kremensky <pkremens> |
| Severity: | medium | Docs Contact: | Russell Dickenson <rdickens> |
| Priority: | unspecified | ||
| Version: | 6.2.0 | CC: | mtjandra, sgilda, smumford, thauser |
| Target Milestone: | ER3 | ||
| Target Release: | EAP 6.3.0 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: |
A bug that caused automatic port offsets to be doubled when set using the `Configure an offset for all default port bindings` option has been corrected in this release.
|
Story Points: | --- |
| Clone Of: | Environment: | ||
| Last Closed: | 2014-06-28 15:44:33 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
|
Description
Petr Kremensky
2013-11-25 08:12:37 UTC
Ports will not longer be doubled by offset. http://git.app.eng.bos.redhat.com/jbossas-installer.git/commit/?h=eap-6.2&id=439c5e594ba2d0dbd1004a2617aa6419e704a6c1 This is still a velid issue for EAP 6.3.0.ER1 installer.
- set automatic port offset to +1
- open jboss-eap-6.3/domain/configuration/host.xml file
Actual
<management-interfaces>
<native-interface security-realm="ManagementRealm">
<socket interface="management" port="${jboss.management.native.port:10001}"/>
</native-interface>
<http-interface security-realm="ManagementRealm">
<socket interface="management" port="${jboss.management.http.port:9992}"/>
</http-interface>
</management-interfaces>
Expected
<management-interfaces>
<native-interface security-realm="ManagementRealm">
<socket interface="management" port="${jboss.management.native.port:10000}"/>
</native-interface>
<http-interface security-realm="ManagementRealm">
<socket interface="management" port="${jboss.management.http.port:9991}"/>
</http-interface>
</management-interfaces>
This has been resolved in ER2. Verified on EAP 6.3.0.ER2 installer. Changed <guilabel></guilabel> tag in Doc Text to ticks (`) to fix Bug 1096865 marking for exclusion from release notes as per bug 1097065. Re-adding the doc_text flag as it was removed due to beta RN. |