Github user swill commented on the issue: https://github.com/apache/cloudstack/pull/1888 I found the issue. `jenv` was not setting the `JAVA_HOME` correctly, so the following logic in `/etc/cloudstack/management/classpath.conf` was getting hit. ``` if ([ -z "$JAVA_HOME" ] || [ ! -d "$JAVA_HOME" ]) && [ -d /usr/lib/jvm/jre-1.7.0 ]; then export JAVA_HOME=/usr/lib/jvm/jre-1.7.0 fi ``` I modified this section to be the following and everything is working now. ``` if ([ -z "$JAVA_HOME" ] || [ ! -d "$JAVA_HOME" ]) && [ -d /usr/lib/jvm/jre-1.8.0 ]; then export JAVA_HOME=/usr/lib/jvm/jre-1.8.0 fi ```
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---