Why is itshowing your JDK 'C:\Program Files\Java\jre7' is not a valid JDK while installing WebLogic server?

后端 未结 17 720
温柔的废话
温柔的废话 2021-01-31 08:24

\"Error

It\'s showing -

This installer must be executed using a Java Development Kit (JDK)
         


        
17条回答
  •  独厮守ぢ
    2021-01-31 09:05

    You have to set the variable JAVA_HOME, but also add the jdk bin folder to the PATH variable. (type in the console window you use to start the weblogic installer)

    It should look similiar to this example:

    set JAVA_HOME=C:\develop\jdk1.8.0_66
    set path=C:\develop\jdk1.8.0_66\bin;%path%
    

提交回复
热议问题