You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@bigtop.apache.org by "Robert Justice (JIRA)" <ji...@apache.org> on 2013/02/07 07:11:12 UTC

[jira] [Created] (BIGTOP-843) It would be really cool if bigtop-detect-javahome were smarter and didn't pick a 32-bit JVM, or one missing policy files

Robert Justice created BIGTOP-843:
-------------------------------------

             Summary: It would be really cool if bigtop-detect-javahome were smarter and didn't pick a 32-bit JVM, or one missing policy files
                 Key: BIGTOP-843
                 URL: https://issues.apache.org/jira/browse/BIGTOP-843
             Project: Bigtop
          Issue Type: Improvement
          Components: General
    Affects Versions: 0.4.0
            Reporter: Robert Justice


I see more and more folks with whacked versions of java configured in /usr/java/default or /usr/lib/jvm/default-java that are pointing to 32-bit JVMs or are simply not even a 1.6 JVM.  I was wondering if we could do a bit more intelligence in this script and run a java -version to rule out a 32-bit JVM or a 1.7 JDK?  Or would that be too error prone?

if [ -z "$JAVA_HOME" ]; then
  for candidate in \
    /usr/lib/jvm/java-6-sun \
    /usr/lib/jvm/java-1.6.0-sun-1.6.0.*/jre/ \
    /usr/lib/jvm/java-1.6.0-sun-1.6.0.* \
    /usr/lib/jvm/j2sdk1.6-oracle \
    /usr/lib/jvm/j2sdk1.6-oracle/jre \
    /usr/lib/j2sdk1.6-sun \
    /usr/java/jdk1.6* \
    /usr/java/jre1.6* \
    /Library/Java/Home \
    /usr/java/default \
    /usr/lib/jvm/default-java \
    /usr/lib/jvm/java-openjdk \
    /usr/lib/jvm/jre-openjdk \
    /usr/lib/jvm/java-1.6.0-openjdk-1.6.* \
    /usr/lib/jvm/jre-1.6.0-openjdk* ; do
    if [ -e $candidate/bin/java ]; then
      export JAVA_HOME=$candidate
      break
    fi
  done
fi


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira