ORA-12525: TNS: listener has not received client’s request in time allowed

ORA-12525:TNS: listener has not received client’s request in time allowed

We get the following error while connecting to establish a connection with Listener of Oracle Database.

Error:
ORA-12525:TNS: listener has not received client’s request in time allowed

Solution:

We need set or increase the value of inbound_connect_timeout. May it will help to establish connection in between time range. Purpose of parameter is to specify the time in seconds for client to establish its connection in that mean time.
If listener does not receive the client request in time specified the it terminate the connection.
Listener logs the IP address of the client and an error ORA-12525:TNS: listener has not received client’s request in time allowed e

Increase the time limit as:

Syntax:

LSNRCTL> SET INBOUND_CONNECT_TIMEOUT time

Example
LSNRCTL> SET INBOUND_CONNECT_TIMEOUT 60

Leave a Reply