Sunday, 4 July 2021

Oracle EBS R12.2 - Collect AccessGate LogFiles

Create a file call logging.properties in 
$FMW_HOME/Oracle_EBS-app1/deployment_plans/accessgate with below information

           # Use this file as the LOG_CONFIG_FILE during deployment.
           #
           #
           #---------------------------------------------
           #  Global properties
           #---------------------------------------------
           handlers=java.util.logging.FileHandler
           #---------------------------------------------
           # Default global logging level.
           .level= ALL
           #---------------------------------------------
           # Handler specific properties.
           #---------------------------------------------
           java.util.logging.FileHandler.pattern = /tmp/fndauth%u.log
           java.util.logging.FileHandler.limit = 100000
           java.util.logging.FileHandler.count = 1
           java.util.logging.FileHandler.level = FINE
           java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter

           #Ebusiness AccessGate modules
           oracle.apps.fnd.ext.common.level=FINE
           oracle.apps.fnd.ext.common.server.level=FINE

 Take a backup of  $INST_TOP/appl/admin/oaea_wls.properties 

 Make below change

 From

      LOG_CONFIG_FILE=
 To
      LOG_CONFIG_FILE=<Absolute path to logging.properties>

 Restart oaea_server1 manage server

        $ADMIN_SCRIPTS_HOME/admanagedsrvctl.sh stop oaea_server1
        $ADMIN_SCRIPTS_HOME/admanagedsrvctl.sh start oaea_server1

  OR
    Restart EBS Accessgate Manage server .
            Login to WLS console 

            Login as weblogic user  
                        > Environment under Domain Structure
                                 > Servers 
                                        >  control
                                                > Select EBS accessgate manage server
            shutdown and start .

Collect  Following logfiles for review:

We can collect log file from two path depend on the patch applied

----------------------------------------------------------------------------------------------------------------------

First Path

$IAS_ORACLE_HOME/instances/EBS_web_<InstanceName>_OHS1/diagnostics/logs/OHS/EBS_web_<Instance Name>/

access_log
console~OHS~1.log
oblog.log

Second Path
if Patch 27294892: CONSOLIDATED PATCH ON TOP OF TXK DELTA 10 or higher applied path will be $IAS_ORACLE_HOME/instances/EBS_web_OHS1/diagnostics/logs/OHS/EBS_web_ohs1)

access_log
console~OHS~1.log
oblog.log

----------------------------------------------------------------------------------------------------------------------

From $EBS_DOMAIN_HOME/servers/oaea_server1/logs
oaea_server1.log
oaea_server1.out
access.log
----------------------------------------------------------------------------------------------------------------------
From $EBS_DOMAIN_HOME/ or /tmp
fndauth.log 


No comments:

Post a Comment