Bug 1189115
| Summary: | DV specific configuration artifacts present in server's 'default' profile | ||
|---|---|---|---|
| Product: | [JBoss] JBoss Data Virtualization 6 | Reporter: | Jan Stastny <jstastny> |
| Component: | Configuration, Installer | Assignee: | Van Halbert <vhalbert> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | |
| Severity: | low | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 6.1.0 | CC: | atangrin, dlesage, thauser, vhalbert |
| Target Milestone: | ER3 | Keywords: | QA-Closed |
| Target Release: | 6.2.0 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: |
DV-specific artifacts (DashboardDS, teiid-log-ds, security-domains created in installer, modeshape subsystem) are also inserted into the 'default' configuration profile in domain.xml. To workaround this issue, remove the default profile from the cli-script within the assembly phase.
|
Story Points: | --- |
| Clone Of: | Environment: | ||
| Last Closed: | 2016-02-10 08:48:39 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: | |||
| Bug Depends On: | 1224333, 1234831 | ||
| Bug Blocks: | |||
|
Description
Jan Stastny
2015-02-04 13:40:49 UTC
This isn't a high priority because it doesn't impact any supported profile. But this could be cleaned up for future releases. Removing these is a matter of removing the default profile from the cli-script within the assembly. I've removed any command that configures domain's default profile. There are still changes that need to be made in teiid-extensions since the scripts are brought in from that project and not the files in the assembly. Following element is still present in domain.xml in default profile:
<datasource jndi-name="java:/teiid-log-ds" pool-name="teiid-log-ds" enabled="true" use-java-context="true">
<connection-url>jdbc:h2:file:${jboss.server.data.dir}/teiid-logging/teiid-logging-ds;DB_CLOSE_ON_EXIT=FALSE;DB_CLOSE_DELAY=-1</connection-url>
<driver>h2</driver>
<security>
<user-name>sa</user-name>
<password>${VAULT::teiid::dblogging.password::1}</password>
</security>
</datasource>
(In reply to Jan Stastny from comment #4) > Following element is still present in domain.xml in default profile: > > <datasource jndi-name="java:/teiid-log-ds" pool-name="teiid-log-ds" > enabled="true" use-java-context="true"> > > <connection-url>jdbc:h2:file:${jboss.server.data.dir}/teiid-logging/teiid- > logging-ds;DB_CLOSE_ON_EXIT=FALSE;DB_CLOSE_DELAY=-1</connection-url> > <driver>h2</driver> > <security> > <user-name>sa</user-name> > <password>${VAULT::teiid::dblogging.password::1}</password> > </security> > </datasource> This related issue is covered by BZ: https://bugzilla.redhat.com/show_bug.cgi?id=1234831 and has been done to be included in ER3. It appears all the changes have been made. Tom, based on his comments, did most of the changes related to default, and I made the change to teiid-extensions. I'll flag this is modified for ER3. |