|
Step 4 - Oracle Net Listener Configuration
|
Learn Oracle - Oracle Net Listener Configuration
On the database server side, the Oracle Net listener, commonly known as the listener,
is a process that listens for client connection requests. It is configured in a file named
listener.ora, with a protocol address that identifies the database. This address
defines the protocol the listener is listening on and any other protocol specific
information. For example, the listener could be configured to listen at the following
protocol address:
(DESCRIPTION=
(ADDRESS=(PROTOCOL=tcp)(HOST=my-server) (PORT=1521)))
This example shows a TCP/IP protocol address that specifies the host machine of the
listener and a port number.
|
|
|