Tags
11G, Deploy, Deployment, Developer, Development Kit, EM, Java, JDeveloper, JDK, jdk7, JRE, Oracle, Script, SOA, Soa-Suite, SUDO, Ubuntu
Continuing our installation process of Oracle SOASuite 11g in this post we will install JDK package
How will we use the generic version of the installer of WebLogic Server 10.3.6, the separate installation of JDK is required. The generic version is independent of operating system, so it does not contain the JDK.
The installation is being done on Ubuntu Linux 64bit version: 4.14, the minimum hardware and software for Oracle 11g SOASuite installation can be found here: http://docs.oracle.com/html/E18558_01/fusion_requirements.htm
The facility is divided into parts as follows, see the link each to see the other Parties:
- Part 1: Oracle Database XE 11g
- Part 2: Java SE Development Kit 7 – JDK
- Part 3: Oracle WebLogic Server 10.3.6
- Part 4: Repository Creation Utility (RCU) 11.1.1.7.0
- Part 5: Soa Suite 11.1.1.7.0
- Part 6: Soa Developer Domain
- Part 7: Oracle JDeveloper 11.1.1.7.0
Download Java SE Development Kit 7
Download the required file using the link:
http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html
Here, click Accept License Agreement
Select the jdk-7u71-linux-x64.rpm
You see the Login screen below if you do not have an account please create it will be necessary for the other downloads.
Made Login will see the message below: then choose the Save File option and click OK to save our file:
Directed Download the jdk–7u71-linux-x64.rpm file must have been saved in the folder ../Downloads
See that the file is with the RPM extension and so you must convert it to DEB for installation in our environment and also for setting up our file and other SOASuite packages you must install the file libaio1
On the Ubuntu Command Prompt, run the following commands:
This command updates its libs Ubuntu:
sudo apt-get update
This command installs the necessary libs for installation: (If you have already installed these libs, this part is not required)
sudo apt-get install alien libaio1
Now run the following command to run the file:
sudo alien --scripts -d jdk-7u71-linux-x64.rpm
Note: This command may take 2-10 minutes depending on your hardware configuration
See that created the file jdk_1.7.071-1_amd64.deb
Run the following command to give the necessary permissions:
sudo chmod 777 jdk_1.7.071-1_amd64.deb
Run the following command to run the file:
sudo dpkg --install jdk_1.7.071-1_amd64.deb
Getting the message below the file was successfully installed
To test the implementation of its java run the following command:
java -version
Hugs and to the Next
/:-D