Linux (Red Hat 4.4.7) installed Weblogic14 version encountered problems and solved

When the installation started, the JDK version used was 1.8.0_361, and the installation of weblogic14 encountered the following error:

[weblogic14@test ~]$ java -jar fmw_14.1.1.0.0_wls.jar -silent -responseFile /home/weblogic14/wls.rsp -invPtrLoc /home/weblogic14/oraInst.loc
启动程序日志文件为/tmp/OraInstall2023-02-17_09-33-19AM/launcher2023-02-17_09-33-19AM.log。
正在提取安装程序... . . . . 完成
检查 CPU 速度是否大于 300 MHz。   实际为 1699.998 MHz    通过
检查交换空间: 必须大于 512 MB。   实际为 16383 MB    通过
检查此平台是否需要 64 位 JVM。   实际为64    通过 (不需要 64)
检查临时空间: 必须大于 300 MB。   实际为 77914 MB    通过
准备从/tmp/OraInstall2023-02-17_09-33-19AM启动 Oracle Universal Installer
日志:/tmp/OraInstall2023-02-17_09-33-19AM/install2023-02-17_09-33-19AM.log
java.lang.reflect.InvocationTargetException
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at oracle.as.install.engine.InstallEngine.launchModule(InstallEngine.java:586)
	at oracle.as.install.engine.InstallEngine.processAndLaunchModules(InstallEngine.java:528)
	at oracle.as.install.engine.InstallEngine.startOperation(InstallEngine.java:477)
	at oracle.sysman.oio.oioc.OiocOneClickInstaller.main(OiocOneClickInstaller.java:717)
Caused by: java.lang.InternalError: java.lang.reflect.InvocationTargetException
	at jdk.internal.platform.Metrics.systemMetrics(Metrics.java:67)
	at jdk.internal.platform.Container.metrics(Container.java:42)
	at sun.management.OperatingSystemImpl.<init>(OperatingSystemImpl.java:181)
	at sun.management.ManagementFactoryHelper.getOperatingSystemMXBean(ManagementFactoryHelper.java:106)
	at java.lang.management.ManagementFactory.getOperatingSystemMXBean(ManagementFactory.java:374)
	at oracle.as.install.engine.modules.statistics.util.SysInfo.<clinit>(SysInfo.java:48)
	at oracle.as.install.engine.modules.statistics.element.AvailableMemoryElement.<init>(AvailableMemoryElement.java:39)
	at oracle.as.install.engine.modules.statistics.standard.StandardElementLocator.loadElements(StandardElementLocator.java:64)
	at oracle.as.install.engine.modules.statistics.boot.ProfilerInitializer.initializeProfile(ProfilerInitializer.java:82)
	at oracle.as.install.engine.modules.statistics.Statistics.launchModule(Statistics.java:329)
	... 8 more
Caused by: java.lang.reflect.InvocationTargetException
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at jdk.internal.platform.Metrics.systemMetrics(Metrics.java:63)
	... 17 more
Caused by: java.lang.ExceptionInInitializerError
	at jdk.internal.platform.CgroupSubsystemFactory.create(CgroupSubsystemFactory.java:95)
	at jdk.internal.platform.CgroupMetrics.getInstance(CgroupMetrics.java:169)
	... 22 more
Caused by: java.lang.ArrayIndexOutOfBoundsException: 4
	at jdk.internal.platform.cgroupv2.CgroupV2Subsystem.initSubsystem(CgroupV2Subsystem.java:73)
	at jdk.internal.platform.cgroupv2.CgroupV2Subsystem.<clinit>(CgroupV2Subsystem.java:44)
	... 24 more
[ERROR]: Installer has encountered an internal Error. Contact Oracle support with details
[EXCEPTION]:java.lang.reflect.InvocationTargetException
无法将日志复制到永久位置: 永久日志目录未知 (空值)。。

可在此处找到日志: /tmp/OraInstall2023-02-17_09-33-19AM。
[weblogic14@test ~]$ 

Using the same JDK and weblogic14 installation package to the Linux (Red Hat 4.8.5) server can be installed normally, and then try to reduce the JDK version to (1.8.0_351) and the installation is successful.
JDK8 historical version download address:
https://www.oracle.com/cn/java/technologies/javase/javase8u211-later-archive-downloads.html

Guess you like

Origin blog.csdn.net/liangbao568/article/details/129082792