Saturday, January 16, 2010

To Find Services Enabled in each Server running EBS R12

Hello All,


Today I wanted to share with you how we find out what services are enabled on each nodes of EBS R12 instance.

To find out that we can use different methods and the best method to find out the information will be from the CONTEXT FILE.

So with the help of the CONTEXT FILE,here is how we find out what services are enabled in each server running R12.

The "oracle.apps.ad.autoconfig.ServiceControl" is a utility which works with the help of java.So java should be in PATH before you execute the below procedure.


On Server699 I have the batch process service alone enabled...which is proved below



server699 applmgr > java oracle.apps.ad.autoconfig.ServiceControl -e /db01/oracle/VIS/inst/apps/VIS_server699/appl/admin/VIS_server699.xml -m STATUS -u apps/apps

The logfile for this session is located at /db01/oracle/VIS/inst/apps/VIS_server699/logs/01061503.log

The service group Batch Processing Services is enabled

On Server700 I have the all the services enabled except Concurrent manager...which is proved below


server700 applmgr > java oracle.apps.ad.autoconfig.ServiceControl -e /db01/oracle/VIS/inst/apps/VIS_server700/appl/admin/VIS_server700.xml -m STATUS -u apps/apps

The logfile for this session is located at /db01/oracle/VIS/inst/apps/VIS_server700/logs/01061502.log

The service group Root Service is enabled

The service group Root Service is enabled

The service group Web Entry Point Services is enabled

The service group Root Service is enabled

The service group Web Application Services is enabled

The service group Other Services is enabled

Syntax

java oracle.apps.ad.autoconfig.ServiceControl -e CONTEXTFILE -m MODE -u user/passwd



Sometimes the information on the CONTEXT_FILE may be misleading especially when you check out like the option mentioned below .

server699 applmgr > grep -i oa_service_status $CONTEXT_FILE
oa_var="s_opmnstatus">enabled
oa_var="s_apcstatus">enabled
oa_var="s_oacorestatus">enabled
oa_var="s_formsstatus">enabled
oa_var="s_oafmstatus">enabled
oa_var="s_tnsstatus">enabled
oa_var="s_concstatus">enabled
oa_var="s_icsmstatus">disabled
oa_var="s_jtffsstatus">enabled
oa_var="s_formsserver_status">disabled
oa_var="s_metcstatus">disabled
oa_var="s_metsstatus">disabled
oa_var="s_mwastatus">disabled

The above output shows all the services to be enabled ,but actually on server699 only Batch Processing is enabled.

No comments:

Post a Comment