Java vendor on Morpheus

Hello experts,
I see version of the Morpheus on the matrix here.
May I know what is the vendor of the JAVA that Morpheus is using?
Oracle JDK, OpenJDK, Redhat?

Thank you

It’s Oracle’s OpenJDK that is embedded in the JRE provided by default. I think you may find the command below helpful in finding out further information:

/opt/morpheus/embedded/java/jre/bin/java  -XshowSettings:properties -version | grep "java.vendor"

Snippet from command output:

# Morpheus version 8.0.2
 java.runtime.name = OpenJDK Runtime Environment
    java.runtime.version = 17.0.13+11
    java.specification.maintenance.version = 1
    java.specification.name = Java Platform API Specification
    java.specification.vendor = Oracle Corporation
    java.specification.version = 17
    java.vendor = Eclipse Adoptium
    java.vendor.url = https://adoptium.net/
    java.vendor.url.bug = https://github.com/adoptium/adoptium-support/issues
    java.vendor.version = Temurin-17.0.13+11
    java.version = 17.0.13
    java.version.date = 2024-10-15
    java.vm.compressedOopsMode = Zero based
    java.vm.info = mixed mode, sharing
    java.vm.name = OpenJDK 64-Bit Server VM
    java.vm.specification.name = Java Virtual Machine Specification
    java.vm.specification.vendor = Oracle Corporation
    java.vm.specification.version = 17
    java.vm.vendor = Eclipse Adoptium
    java.vm.version = 17.0.13+11
    jdk.debug = release

Feel free to reach out to support if you need any further assistance :slightly_smiling_face:.

1 Like