Sunday, September 2, 2012

Administration tasks in the Solaris


Certain Siebel and Oracle BI components can be integrated into the Solaris standard system. This means that standard, specific and useful command line  exist in Solaris that can be used easily (if necesary) in order to start-up and shutdown.

So, in this context, this post is focus on specify whether Administration tasks can be invoced with certain command line, and if so, how.

First of all, here are useful expresions for Solaris:

Hard disk information in Solaris:
# df -h

Memory:
# vmstat 1 2| tail -1 | awk '{ print $5/1024 , "MB" }'

kill session (once find):
# ps -ef|grep java
# kill -9 23554

Anyway, now, let’s present a review of the involved architecture:



Let's get into some detail on command lines within Siebel:

shutdown:

..../siebel/siebsrvr/bin   . ./stop_server all  (Siebel Server)
.../siebel/gtwysrvr/bin   . ./stop_ns           (Gateway)

startup:

.../siebel/gtwysrvr/bin   . ./start_ns (Gateway)
..../siebel/siebsrvr/bin   . ./start_server all  (Siebel Server)


The following diagram shows Oracle BI architecture in more detail:



Let's get into some detail on command lines within Oracle BI:

cd .../OracleBI/setup

shutdown:
./run-sch.sh stop   (Oracle BI Presentation Services and Javahost)
./run-saw.sh stop   (Oracle BI Scheduler)
./run-sa.sh stop    (Oracle BI Server process)



startup:
./run-sa.sh start   (Oracle BI Server process)
./run-sch.sh start  (Oracle BI Scheduler)
./run-saw.sh start  (Oracle BI Presentation Services and Javahost)



Informatica PowerCenter:

startup:
cd .../Informatica/PowerCenter8.6.1/server/tomcat/bin
./infaservice.sh startup

shutdown:
./infaservice.sh shutdown

Datawarehouse Application Console (DAC):

startup:
cd .../dac
./startserver.sh

shutdown:
./stopserver.sh


Hope it helps.
Joan Martí.