| Summary: | Installer fails on Solaris 11 | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | [JBoss] JBoss Data Virtualization 6 | Reporter: | Filip Nguyen <fnguyen> | ||||||
| Component: | Configuration | Assignee: | Thomas Hauser <thauser> | ||||||
| Status: | CLOSED CURRENTRELEASE | QA Contact: | |||||||
| Severity: | urgent | Docs Contact: | |||||||
| Priority: | unspecified | ||||||||
| Version: | 6.0.0 | CC: | atangrin, vhalbert, wgibson | ||||||
| Target Milestone: | CR2 | ||||||||
| Target Release: | 6.0 | ||||||||
| Hardware: | Unspecified | ||||||||
| OS: | Solaris | ||||||||
| Whiteboard: | |||||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||||
| Doc Text: |
Users are having trouble starting JBoss Data Virtualization on Solaris 11. This is occuring because neither PATH nor JAVA_HOME environment variables are set. At least one of these must be set.
|
Story Points: | --- | ||||||
| Clone Of: | Environment: | ||||||||
| Last Closed: | 2014-03-10 18:27:59 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: | |||||||
| Attachments: |
|
||||||||
|
Description
Filip Nguyen
2013-11-10 17:55:09 UTC
Created attachment 822121 [details]
Installation Log
This was occuring because neither PATH nor JAVA_HOME environment variables were set. At least one of these must be set, or
# Setup the JVM
if [ "x$JAVA" = "x" ]; then
if [ "x$JAVA_HOME" != "x" ]; then
JAVA="$JAVA_HOME/bin/java"
else
JAVA="java"
fi
fi
This snippet within standalone.sh or domain.sh will result in a command that is not executable in the environment. This apparently fails without any kind of error message that ProcessBuilder can see, and thus is not logged in the installer.
I suggest to remove blocker flag as this is not a blocking bug. DV6 installer works on Sol 11. |