OBIEE Services in linux
Posted by shanmugha bharathy on January 20, 2015
Category Other
0
0

Stopping and Starting OBIEE Services in linux

STOP OBIEE Services:

1. Shutdown OPMN Components

Oracle Process Manager should be used to shutdown all system components.

Go to> /u01/app/Middleware/instances/instance1/bin

cd /u01/app/Middleware/instances/instance1/bin

./opmnctl stopall

 

2.Shutdown Managed Server

Go to > /u01/app/Middleware/user_projects/domains/bifoundation_domain/bin

cd /u01/app/Middleware/user_projects/domains/bifoundation_domain/bin

./stopManagedWebLogic.sh bi_server1 t3://obie.new.com:7001 weblogic weblogic

Verify that the Managed Server has shut down completely with ps -ef | grep bi_server1.

3. Shutdown Node Manager

There should be a single Node Manager for the machine.  Shut it down with the command below.

 

ps -ef | grep Node | grep nodemanager | grep -v grep | cut -c10-15

kill -9 ####

4Shutdown Admin Server

There should be a single Node Manager for the machine.  Shut it down with the command below.

Go to> /u01/app/Middleware/user_projects/domains/bifoundation_domain/bin

./stopWebLogic.sh weblogic weblogic t3://obie.new.com:7001

Verify that the Managed Server has shut down completely with ps -ef | grep AdminServer.

 

START OBIEE SERVICES:

1. Start Admin Server

cd /u01pt/app/Middleware/user_projects/domains/bifoundation_domain/bin

weblogic ./startWebLogic.sh -Dweblogic.management.username= weblogic Dweblogic.management.password=weblogic

tail -f weblogic.out

Weblogic.out is log file which logs the running status

After issuing the start command we tail the log until we see the message below, indicating that the server has started successfully.

<WebLogicServer> <BEA-000360> <Server started in RUNNING mode>

 

  1. StartNode Manager

cd /u01/app/Middleware/wlserver_10.3/server/bin

nodemanager ./startNodeManager.sh > nodemanager.out &

tail -f nodemanager.out

 

nodemanager.out is log file which logs the running status

 

After issuing the start command we tail the log until we see the message below, indicating that the server has started successfully.

<Info> <Secure socket listener started on port ####>

 

3. Start Managed Server

 

By default there should be one managed server, bi_server1 that we will start up.  At this point you should start any other Managed Servers in this WebLogic domain.

cd /u01/app/Middleware/wlserver_10.3/common/bin

./commEnv.sh

cd / u01/app/Middleware /user_projects/domains/bifoundation_domain/bin

./setDomainEnv.sh

weblogic ./startManagedWebLogic.sh bi_server1 t3://machine:7001 > bis1_startup.log &

tail weblogic.out

 

Weblogic.out is log file which logs the running status

After issuing the start command we tail the log until we see the message below, indicating that the server has started successfully. Server started in RUNNING mode

4. Startup OPMN Components

Oracle Process Manager should be used to shutdown all system components.

cd /u01/app/Middleware/instances/instance1/bin

./opmnctl startall

./opmnctl status

 

Now you can login to console and verify the status of the running servers.

Hope it Helps !!

Comments
No comments