Logging | Tracing   « Prev  Next »

Lesson 1

Using Logging and Tracing to troubleshoot Network Environment

Understanding Oracle's scheme for logging, and tracing is necessary in order to fully understand and troubleshoot any Oracle Network Services problem. In this module, you will look at the basic environmental information, such as the purposes and locations of log and trace files. The module will conclude with a discussion of how trace files are used to resolve a Network Services problem.

Learning Objectives

After completing this module, you will be able to:
  1. List the type of information that is contained in the log and trace files
  2. Describe where the Oracle log and trace files are located
  3. Alter the log and trace file locations
  4. Modify and customize the log and trace file contents

Understanding Oracle Net Services Trace File Names

Each Oracle Net Services component produces its own trace file. Table 7-1 provides the default trace file names and lists the components that generate the trace files.

Table 7-1 Trace Files Names
Table 7-1 Trace Files Names

TRACE

Purpose: To set tracing for the listener.
Syntax: From the operating system:
lsnrctl trace level listener_name

From the Listener Control utility:
LSNRCTL> trace level listener_name

Arguments
level: One of the following trace levels:
  1. off for no trace output
  2. user for user trace information
  3. admin for administration trace information
  4. support for Oracle Support Services trace information

listener_name: Specify the listener name, if the default name of LISTENER is not used.
Usage Notes: This command has the same functionality as the SET TRC_LEVEL command
Example:
LSNRCTL > TRACE ADMIN lsnr
Connecting to (ADDRESS=(PROTOCOL=TCP)(HOST=sales-server)(PORT=1521))
Opened trace file: /oracle/network/trace/listener.trc
The command completed successfully

The next lesson presents an overview of the log and trace files.