Sunday, July 5, 2015

Weblogic Server 10.3.6 Installation and Administration

The standard JDK installation is fine for the Development Environment. JRockit installation is preferred for the Production Environment.

Edit the host entries in the /etc/hosts file with root user before starting the installation.

Create new group and user for weblogic server installation.

$groupadd -g 1000 oinstall
$useradd -u 1100 -g oinstall oracle
$passwd oracle

Provide password for oracle user.

Create the directories in which the Oracle software will be installed.

$mkdir -p /u01/app/oracle/product/fmw11g
$mkdir -p /u01/app/oracle/config/domains
$mkdir -p /u01/app/oracle/config/applications
chown -R oracle:oinstall /u01
chmod -R 775 /u01/

Append the below entries in /etc/profile file

export MW_HOME=/u01/app/oracle/product/fmw11g
export WLS_HOME=$MW_HOME/wlserver_10.3
export WL_HOME=$WLS_HOME

Amend the /etc/security/limits.d/ao-nproc.conf

from
      *        soft      nproc      1024
To
      *        -          nproc        16384


Run the installer as oracle user

$JAVA_HOME/bin/java -Xmx1024m -jar wls1036_generic.jar

Enter the Middleware Home

/u01/app/app/oracle/product/fmw11g

Start the Node Manager

$nohup $WLS_HOME/server/bin/StartNodeManager.sh

Start Weblogic Server

$nohup $WLS_HOME/domains/<domain>/bin/StartWebLogic.sh

Stop Weblogic Server

$nohup $WLS_HOME/domains/<domain>/bin/StopWebLogic.sh

Start Managed WebLogic Server

$nohup $WLS_HOME/domains/<domain>/bin/StartManagedWebLogic.sh <Managed Server>

Stop Managed Weblogic Server

$nohup $WLS_HOME/domains/<domain>/bin/StopManagedWebLogic.sh <Managed Server>





No comments:

Post a Comment