Reputation: 2136
I want to install Oracle WebLogic Server 12.2.1.4 in Ubuntu but I have this error:
nunyet@lw202050777:~/Downloads$ java -jar fmw_12.2.1.4.0_wls_lite_generic.jar
Launcher log file is /tmp/OraInstall2020-10-13_04-12-07PM/launcher2020-10-13_04-12-07PM.log.
Extracting the installer . . . . Done
The OpenJDK JVM is not supported on this platform.
The log is located here: /tmp/OraInstall2020-10-13_04-12-07PM/launcher2020-10-13_04-12-07PM.log.
Upvotes: 2
Views: 2502
Reputation: 410
In case you are trying to install Fusion Middleware or similar and you only need some of the files you can actually force the installer to accept OpenJDK:
oraparam.ini
file (located e.g. under Disk1/install
)VM_TYPES
line and add the name of the Java VM as it was shown in the error message (The {0} JVM is not supported
…) separated by commajava -jar <installer.jar> -paramFile <edited file.ini>
Upvotes: 2
Reputation: 2606
WebLogic Server does not work and is not supported with OpenJDK, you "must" use Oracle JDK to run it.
Upvotes: 0
Reputation: 632
It looks like there is a problem with your JVM, download and install a later version of the Java SDK and try again, failing that please upload the log.
Upvotes: 0