9iAS services Very Urgent! [message #77114] |
Wed, 08 September 2004 02:20 |
Daljit Singh
Messages: 290 Registered: October 2003 Location: Texas
|
Senior Member |
|
|
Hi All,
I installed Oracle 9iAS on Linux AS 2.1 with infrastructure and the whole installation went smoothly. I checked the demo pages also all were working fine. BUT when i rebooted my machine so none of the service get up. I manully started the emctl and opmnctl processes but still i am unable to access the application.
Can anybody tell me which services we required to start to access the whole application server. If you could provide me some kind of startup script which i can place in my init level, so that would be much better.
Thanks in advance.
Daljit Singh.
|
|
|
Re: 9iAS services Very Urgent! [message #77115 is a reply to message #77114] |
Wed, 08 September 2004 10:36 |
andrew again
Messages: 2577 Registered: March 2000
|
Senior Member |
|
|
#!/usr/bin/csh
#. /.../9iasinfrastruct_env
## lsnrctl start
##
## sqlplus -s "/ as sysdba" << EOF
## startup
## exit
## EOF
echo ------------------------------------------------------
echo Starting Oracle Iternet Directory Monitor...
echo ------------------------------------------------------
oidmon start
sleep 3
echo ------------------------------------------------------
echo Starting Oracle Iternet Directory Server...
echo ------------------------------------------------------
#oidctl server=oidldapd instance=1 configset=0 start
oidctl server=oidldapd instance=1 configset=1 start
sleep 10
echo ------------------------------------------------------
echo starting Apache HTTP server...
echo ------------------------------------------------------
dcmctl start -ct ohs
sleep 10
echo ------------------------------------------------------
echo Starting OC4J...
echo ------------------------------------------------------
dcmctl start -ct oc4j
sleep 10
echo ======================================================
echo Status of HTTP server and OC4J is:
echo ======================================================
dcmctl getstate -v
echo ------------------------------------------------------
echo Starting EM Website...
echo DISPLAY=$DISPLAY
echo ------------------------------------------------------
emctl start
|
|
|
|