Kresimir Zic
Kresimir Zic

Reputation: 21

How to install JDeveloper 12.2.1.3 on a M1 Macbook?

Any hints how to install jdev 12.2.1.3 or 12.2.1.4 on a laptop with a new M1 chip?

I installed jdk8 from Zulu, started the jdev installed:

kresimirzic@Kresimirs-MacBook-Pro jdev % java -jar jdev_suite_122130.jar
Launcher log file is /private/var/folders/wt/39zw_r0s7r1b7fcsqc9c63sc0000gn/T/OraInstall2023-03-26_09-42-52PM/launcher2023-03-26_09-42-52PM.log.
Extracting the installer . . . . . . . Done
Exception in thread "main" java.lang.NullPointerException
    at com.oracle.cie.nextgen.common.inventory.InventoryUtils.getDefaultInvPtrLoc(InventoryUtils.java:121)
    at com.oracle.cie.nextgen.launcher.PlatformHelper.getDefaultInventoryPointerFile(PlatformHelper.java:492)
    at com.oracle.cie.nextgen.launcher.Utils.getInvPtrLoc(Utils.java:435)
    at com.oracle.cie.nextgen.launcher.Launcher.doMainHelper(Launcher.java:2276)
    at com.oracle.cie.nextgen.launcher.Launcher.execute(Launcher.java:4075)
    at com.oracle.cie.nextgen.launcher.Launcher.main(Launcher.java:3938)
kresimirzic@Kresimirs-MacBook-Pro jdev % 

But no success. Installation with root user is not allowed as well.

Thx Kresimir

Upvotes: 2

Views: 1019

Answers (1)

Siddharth
Siddharth

Reputation: 9584

Install this version of java to get the installation to work.

export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk
export PATH=$JAVA_HOME/Contents/Home/bin:$PATH 
java -version
java version "1.8.0_202"
Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
Java HotSpot(TM) 64-Bit Server VM (build 25.202-b08, mixed mode)
[JDK 8u202][1]
prompt fmw_12.2.1.3.0_wls_quick_Disk1_1of1 % java -jar fmw_12.2.1.3.0_wls_quick_Disk1_1of1.jar

Upvotes: 0

Related Questions