Tuesday 21 February 2017

Weblogic Server 11g (10.3.6) Installation on Linux 6

Steps to Install Weblogic Server 11g(10.3.6)

To install Weblogic Server we require Java JDK or JRocket JDK. Oracle recommend Java JDK for Development and JRocket JDK for Production Environment. 
1. Identify appropriate installation file for your platform and download:

http://netgik.blogspot.in/2017/02/oracle-weblogic-server-installers.html

Download installer from OTN Website.
http://edelivery.oracle.com
http://download.oracle.com

2. Create user to install weblogic server
/usr/sbin/useradd -g psoft weblogic

3. Create folder
mkdir -p /u02/mw/weblogic

4. Change permission for installation:

Here we are using generic installer.

chown weblogic wls1036_generic.jar
chmod 755 wls1036_generic.jar

5. Install WebLogic Server

su - weblogic
cd /dump/
(Go to folder where installer exist. Our weblogic generic installer is in dump folder)

export JAVA_HOME=/u02/jrockit
$JAVA_HOME/bin/java -jar ./wls1036_generic.jar -mode=console -logs=./wls1036_install.log

    Create a new Middleware Home ->
    Choose Middleware Home Directory = /u02/mw/weblogic
    Receive Security Update = No
    Select the type of installation you wish to perform. = Typical
    JDK Selection (Any * indicates Oracle Supplied VM) = 2|/u02/jrockit [x]
    Congratulations! Installation is complete.


Other Helpfull URLs:
  • https://docs.oracle.com/cd/E24902_01/doc.91/e18840/install_config_10_3_6.htm#EOHWL181
  • https://oracle-base.com/articles/11g/oracle-weblogic-server-11gr1-1036-installation-on-oracle-linux-5-and-6-11gr1

No comments:

Post a Comment

Jenkins Startup and Configuration

Steps to setup jenkins on ubuntu:- -After installation. check the jenkins services running on not on the server. sudo service jenk...