Bug 1329231
| Summary: | JBoss EAP 6 silent installer doesn't work if port 9999 is in use | ||
|---|---|---|---|
| Product: | [JBoss] JBoss Enterprise Application Platform 6 | Reporter: | Abhijit humbe <abhumbe> |
| Component: | Installer | Assignee: | Enrique Gonzalez Martinez <egonzale> |
| Status: | CLOSED WONTFIX | QA Contact: | Petr Kremensky <pkremens> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 6.4.6 | CC: | bbaranow, egonzale, mkopecky, mmillson, thauser |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2016-05-03 07:13:17 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: | |
| Embargoed: | |||
Jiri Pallich <jpallich> updated the status of jira JBEAP-1291 to Closed |
Description of problem: I have generated the response xml file for installing jboss eap 6 (auto.xml),which also created the auto.xml.variable file. I have another JBoss instance running on system, so I have modified management ports in auto.xml.variables ~~~ domain.management-http = 19990 domain.management-native = 19999 ~~~ When we try to install JBoss instance using following command it fails with exception: $ java -jar /path/to/jboss-as-server-installer-6.4.0.jar /path/to/auto.xml ~~~ The port 9999 is already in use, and may be required to be open for this installation. Do you wish to continue? ~~~ Version-Release number of selected component (if applicable): JBoss EAP 6.x How reproducible: Steps to Reproduce: 1. 2. 3. Actual results: After modifying auto.xml file, we should be able install JBoss server instance. Expected results: Not able to install JBoss server after modification in auto.xml Additional info: The installer seems to have a class that validates port, uses hardcoded port: NoPortClashValidator.class: ~~~~ if (!available(9999)) { this.warning = "NoPortClashValidator.warning"; setMessage(idata.langpack.getString(this.warning)); return DataValidator.Status.WARNING; } ~~~~