1833365 Members
3092 Online
110052 Solutions
New Discussion

Weblogic Server on hpux

 
SOLVED
Go to solution
Shivkumar
Super Advisor

Weblogic Server on hpux

Hey guys,

How to verify that web logic server is running fine on hpux 11i ?

I just needed the command to find the processes for cluster, managed server etc.

Does kill -3 option (i meam option -3) produces web logic core dump ?

Thanks,
Shiv
1 REPLY 1
Ganesha Sridhara
Honored Contributor
Solution

Re: Weblogic Server on hpux

Hello Shiv,

I think Weblogic will not store its process id in any of the log file.
You can get the detail about Weblogic process status from the console:
http://:/console

As you are looking in the command prompt you may have to do following changes (before changing please take a copy of Weblogic start script):
1. Look for the following type of line in the weblogic start script
${JAVA_HOME}/bin/java ${JAVA_VM} ${MEM_ARGS} ${JAVA_OPTIONS} -Dweblogic.Name=${S
ERVER_NAME} -Dweblogic.ProductionModeEnabled=${PRODUCTION_MODE} -Djava.security.
policy="${WL_HOME}/server/lib/weblogic.policy" weblogic.Server

2. Add the following line just below the above kind of line, which will redirects the process id to some file.
echo $! > ${WL_HOME }/weblogic.pid

3. You have to remove the weblogic.pid file while stopping the weblogic server.


HTH

Regards,
Ganesha Sridhara