반응형

cx_Oracle Connection Timeout 참고

 

 

python - cx_Oracle Connection Timeout - Stack Overflow

 

cx_Oracle Connection Timeout

I am trying to connect to Oracle database but getting below error: curcon = cx_Oracle.connect(conn_str) cx_Oracle.DatabaseError: ORA-12170: TNS:Connect timeout occurred Here's block of code:

stackoverflow.com

 

 

 

오라클 DCD(Dead Connection Detection) 기능에서 EXPIRE_TIME이 있습니다. 

오라클 설치 경로에 있는 sqlnet.ora 설정 파일에 설정합니다.

 

%ORACLE_HOME%\NETWORK\ADMIN\sqlnet.ora

 

SQLNET.EXPIRE_TIME 항목을 설정하는데

SQLNET.EXPIRE_TIME= 120 <---- 120분 만료 시간

 

리스너를 재시작하면 만료 시간이 적용되는데 이미 연결 중인 세션에는 적용되지 않습니다.

(출처: https://smoh.tistory.com/411 [Simple is Beautiful.:티스토리])

 

반응형

+ Recent posts