在Ubuntu上安装Oracle WebLogic Server 12.2.1.4

huangapple go评论62阅读模式
英文:

installing Oracle WebLogic Server 12.2.1.4 in Ubuntu

问题

我想在Ubuntu中安装Oracle WebLogic Server 12.2.1.4,但我遇到了以下错误:

nunyet@lw202050777:~/Downloads$ java -jar fmw_12.2.1.4.0_wls_lite_generic.jar
安装程序日志文件位于/tmp/OraInstall2020-10-13_04-12-07PM/launcher2020-10-13_04-12-07PM.log。
正在解压安装程序……完成
此平台不支持OpenJDK JVM。
日志位置:/tmp/OraInstall2020-10-13_04-12-07PM/launcher2020-10-13_04-12-07PM.log。

英文:

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.

答案1

得分: 1

如果您尝试安装Fusion Middleware或类似的软件,并且只需要其中一些文件,您可以实际上强制安装程序接受OpenJDK:

  • 使用ZIP工具打开OUI安装程序JAR文件,并提取oraparam.ini文件(位于例如Disk1/install下)
  • 在提取的文件中查找VM_TYPES行,并按照错误消息中显示的Java VM名称(例如The {0} JVM is not supported...)使用逗号分隔,添加该名称
  • 保存文件
  • java -jar <installer.jar> -paramFile <edited file.ini>的方式启动安装程序
英文:

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:

  • Open the OUI Installer JAR with a ZIP utility and extract the oraparam.ini file (located e.g. under Disk1/install)
  • In the extracted file look for the 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 comma
  • Save the file
  • Launch the installer as java -jar &lt;installer.jar&gt; -paramFile &lt;edited file.ini&gt;

答案2

得分: 0

似乎存在您的JVM出现问题,下载并安装Java SDK的较新版本,然后再次尝试。如果仍然失败,请上传日志。

英文:

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.

答案3

得分: 0

WebLogic Server不适用并且不支持OpenJDK,在运行它时“必须”使用Oracle JDK。

英文:

WebLogic Server does not work and is not supported with OpenJDK, you "must" use Oracle JDK to run it.

huangapple
  • 本文由 发表于 2020年10月13日 22:17:05
  • 转载请务必保留本文链接:https://go.coder-hub.com/64336983.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定