英文:
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. underDisk1/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 <installer.jar> -paramFile <edited file.ini>
答案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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论