090002. Install Oracle12c application server in Windows


What you’ll need

  • About 15 minutes
  • JDK 1.7 or later 
Preconditions:

References:
Download oracle12c application server.

Conventions:
 The convention to install different versions of java create a folder name "as" and under this folder install all versions of jdk, for intance D:\as\oracle12c

1. Install weblogic

We have just run the next command java -jar fmw_12.1.3.0.0_wls.jar

1.1 Installing in windows10 - Knowing Troubleshootings

1.1.1 Run as Administrator

java -jar fmw_12.1.3.0.0_wls.jar

Launcher log file is C:\Users\computer\AppData\Local\Temp\OraInstall2018-04-18_12-03-01AM\launcher2018-04-18_12-03-01AM.log.
Extracting files...........
Unable to access or modify the system registry.  Select Run as Administrator when opening the Command Prompt and try again.

In order to solve the problem we have to run the command prompt as administrator. 





1.1.2 JDK should be in the classpath, not JRE 

D:\>java -jar fmw_12.1.3.0.0_wls.jar
Launcher log file is C:\Users\computer\AppData\Local\Temp\OraInstall2018-04-18_12-08-42AM\launcher2018-04-18_12-08-42AM.log.
Extracting files.........
This installer must be executed using a Java Development Kit (JDK)
but D:\Java\jre is not a valid JDK.

Reference: https://stackoverflow.com/questions/37001407/why-its-showing-your-jdk-cprogram-files-java-jre7-is-not-a-valid-jdk-while-inst

1.1.3 Version of JDK installed not correct


 This exception is launch because it has been installed a java version not supported by this Weblogic12c, in our cases Jdk 1.6.
See the next link for further information 

2. Create a domain

%WL_HOME%\wlserver\common\bin\config.cmd execute as System administrator.

3. Uninstall weblogic

https://docs.oracle.com/cd/E24902_01/doc.91/e18840/uninstall.htm#EOHWL209

See Also:
The following reference may also be helpful:
Linux  Pending...


Comments