Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Starting ohs or standalone report server takes too long on Forms 12c 12.2.1.3

myluismDec 8 2017 — edited Dec 21 2017

Hi all.

I have performed 3 installations of FMW Forms and Reports 12c (1 with 12.2.1.2 and 2 12.2.1.3).

The 12.2.1.2 installation was done on Oracle Linux 6.9 direct on iron (no virtualization). I notice the startup process for NodeManager, Admin Server, WLS_FORMS, WLS_REPORTS, ohs and  standalone report server takes around 6-8 minutes to bring everything up.

I consider this timing pretty good as this is not a real server. It is just a PC with 8G of RAM. Beside FMW i also have an Oracle Database installation and two instances running. So no issues with this one.

However of the other two installations with 12.2.1.3 i have notice it takes a long long time when starting ohs or standalone report server, up to the point i sometimes get desperate. Boths of these server use 16G of RAM. However one main difference is they are running as VM on WMWare. I have not a precise timing here, but  i reckon it takes like 20 minutes to start the whole thing.

I found this unacceptable.

I use the same script on both scenarios. So the difference might be virtualization issue or a 12.2.1.3 issue.

This is the script:

[weblogic@wFIGOFR scripts]$ more startup_WLS_FR.sh

export ORACLE_BASE=/u01/app/oracle

export MW_HOME=$ORACLE_BASE/product/12.2.1

export WLS_HOME=$MW_HOME/wlserver

export WL_HOME=$WLS_HOME

export DOMAIN_BASE=$ORACLE_HOME/user_projects/domains

export DOMAIN_HOME=$DOMAIN_BASE/frsdomain

export OHS_INST=$DOMAIN_HOME/config/fmwconfig/components/OHS/instances/ohs1

# Start Fusion Middleware Servers and Components

echo "Arrancando FMW Forms and Reports 12c" > /home/weblogic/scripts/Start_Up.log

date +%d/%m/%Y%t%H:%M:%S >> /home/weblogic/scripts/Start_Up.log

# Start NodeManager

echo "Arrancando FMW Forms and Reports 12c - NODE MANAGER" >> /home/weblogic/scripts/Start_Up.log

nohup $DOMAIN_HOME/bin/startNodeManager.sh > /dev/null 2>&1 &

date +%d/%m/%Y%t%H:%M:%S >> /home/weblogic/scripts/Start_Up.log

# Start WebLogic Domain

echo "Arrancando FMW Forms and Reports 12c -Weblogic - ADMIN SERVER" >> /home/weblogic/scripts/Start_Up.log

nohup $DOMAIN_HOME/bin/startWebLogic.sh > /dev/null 2>&1 &

date +%d/%m/%Y%t%H:%M:%S >> /home/weblogic/scripts/Start_Up.log

sleep 60

# Start the managed Servers

echo "Arrancando FMW Forms and Reports 12c -Weblogic - WLS_FORMS" >> /home/weblogic/scripts/Start_Up.log

nohup $DOMAIN_HOME/bin/startManagedWebLogic.sh WLS_FORMS > /dev/null 2>&1 &

date +%d/%m/%Y%t%H:%M:%S >> /home/weblogic/scripts/Start_Up.log

echo "Arrancando FMW Forms and Reports 12c -Weblogic - WLS_REPORTS" >> /home/weblogic/scripts/Start_Up.log

nohup $DOMAIN_HOME/bin/startManagedWebLogic.sh WLS_REPORTS > /dev/null 2>&1 &

date +%d/%m/%Y%t%H:%M:%S >>/home/weblogic/scripts/Start_Up.log

# Start the web tier.

echo "Arrancando FMW Forms and Reports 12c -Weblogic - ORACLE OHS y Standalone Report Server" >> /home/weblogic/scripts/Start_Up.log

$DOMAIN_HOME/bin/startComponent.sh ohs1

date +%d/%m/%Y%t%H:%M:%S >>/home/weblogic/scripts/Start_Up.log

sleep 15

# $DOMAIN_HOME/bin/startComponent.sh rep_server1

date +%d/%m/%Y%t%H:%M:%S >>/home/weblogic/scripts/Start_Up.log

[weblogic@wFIGOFR scripts]$

So is there an issue i'm not aware of? a post installation action not performed? is this the expected behaviour? which logs can inspect?

In general any guideline is most welcomed!!!!

Regards, Luis!!!!

PD: I have not yet install VMWare tools.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 18 2018
Added on Dec 8 2017
12 comments
3,951 views