| Summary: | Wrong security type is used for datasource post-install configuration. | ||
|---|---|---|---|
| Product: | [JBoss] JBoss Enterprise Application Platform 6 | Reporter: | Petr Kremensky <pkremens> |
| Component: | Installer | Assignee: | Francisco Canas <fcanas> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Petr Kremensky <pkremens> |
| Severity: | high | Docs Contact: | Russell Dickenson <rdickens> |
| Priority: | unspecified | ||
| Version: | 6.2.0 | CC: | fcanas, thauser |
| Target Milestone: | CR2 | ||
| Target Release: | EAP 6.2.0 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2013-12-15 16:15:38 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: | |
Please swap actual and expected CLI commands. Fixed the issue that was causing the ServerCommands to run the wrong version of the command when using username+password as the security method. See: http://git.app.eng.bos.redhat.com/jbossas-installer.git/commit/?h=eap-6.2&id=4361fe412b3550c313a43a6dd3bec71dc390feb3 Verified on EAP 6.2.0.CR2 installer. |
Description of problem: Security-domain is always used as security type for configuration of XA datasource even if I choose Username + Password. Version-Release number of selected component (if applicable): EAP 6.2.0.CR1 How reproducible: Always Steps to Reproduce: 1. Start gui intallation, go to Post-install screen using default values. 2. Select to install JDBC & Datasource. 3. Select eg. postgresql as driver vendor and enter some jar file so the installer will let you go Next. 4. Choose Username + Password as Security Type and finish the installation. 5. Check configuration files or installation logs Actual results: CLI command: #2 ... --max-pool-size=20 --user-name=master --password="asdasd!1" ... <security> <security-domain>master</security-domain> </security> Expected results: CLI command: #2 ... --max-pool-size=20 --security-domain=master ... <security> <user-name>master</user-name> <password>asdasd!1</password> </security> Additional info: - Regression against EAP 6.2.0.ER7 - both standalone and domain are affected