Steps by step WebLogic configuration

September 13, 2020
()

Steps by step WebLogic configuration

What is Weblogic?

• Is an application Server: Java EE compliant
• Used in Fusion Apps, OEM 13c
• 12c version supports MT (multi-tenancy)



Create stage and MW_home(Middleware) directory

[root@DBsGURU stage]# mkdir -p /u01/app/oracle/oraInventory
[root@DBsGURU stage]# mkdir -p /u01/app/oracle/Middleware
[root@DBsGURU stage]# mkdir -p /u01/product
[root@DBsGURU stage]# mkdir -p /u02/JAVA
[root@DBsGURU stage]# mkdir -p /u02/cronjob/oracle
[root@DBsGURU stage]# mkdir -p /u02/script/oracle



Create Oracle Group

[root@DBsGURU stage]# groupadd dba


• Create Oracle User

[root@DBsGURU stage]# useradd oracle
[root@DBsGURU stage]# usermod oracle -g oracle -G dba
[root@DBsGURU stage]# passwd oracle



• Edit Oracle user .bashprofile

# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
 . ~/.bashrc
 fi
 # User specific environment and startup programs
 PATH=$PATH:$HOME/.local/bin:$HOME/bin
 export MW_HOME=/u01/app/oracle/Middleware
 export WLS_HOME=$MW_HOME/wlserver
 export WL_HOME=$WLS_HOME
 export Banner_HOME=/u01/banner/bannerenv
 export Banner_HOME=$Banner_HOME
 export PRODUCT_HOME=/u01/product
 export PRODUCT_HOME=$PRODUCT_HOME
 export CRONJOB_HOME=/u02/cronjob/oracle
 export CRONJOB_HOME=$CRONJOB_HOME
 export SCRIPT_HOME=/u02/script/oracle
 export SCRIPT_HOME=$SCRIPT_HOME
 export STAGE_DIR=/u02/stage
 export STAGE_DIR=$STAGE_DIR
 export JAVA_HOME=/u02/JAVA/jdk1.8.0_181
 export PATH=$JAVA_HOME/bin:$PATH
 export PATH



GUI installed VNC

• Installed VNC server

 [root@DBsGURU ~]# yum install vncserver


Steps to Install Weblogic

 [oracle@DBsGURU wls_12_2_1_3]$ ./jdk1.8.0_181/bin/java -jar fmw_12.2.1.3.0_wls.jar





• Start Weblogic

/u01/app/oracle/Middleware/user_projects/domains/base_domain/bin

[oracle@DBsGURU bin]$ nohup sh startWebLogic.sh>startWebLogic.log 2>&1&

 

This document is only for learning purposes and always validates in the LAB environment first before applying to the LIVE environment.


Hope so you like this article!
Please share your valuable feedback/comments/subscribeand follow us below and don’t forget to click on the bell icon to get the latest update.Click here to know more about our pursuit.

 

Related Articles


Loading

How useful was this post?

Click on a star to rate it!

Average rating / 5. Vote count:

No votes so far! Be the first to rate this post.

As you found this post useful...

Follow us on social media!

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

<strong>Hello and welcome to DBsGuru,</strong>DBsGuru is a group of experienced DBA professionals and serves databases and their related community by providing technical blogs, projects, training. Technical blogs are the source of vast information not about databases but its related product like middleware, PL/SQL, replication methodology, and so on.Thanks for the visits!<strong>Share Learn Grow!</strong>

Leave a Reply

Your email address will not be published. Required fields are marked *