반응형

SQL Developer 새 접속하려는데 IO오류 17002가 발생하는 경우 오라클 리스너를 확인해 봅니다.


Oracle Error 17002 "Io Exception: The Network Adapter could not establish the connection"


1. 아래 명령어를 통해 리스너 상태를 확인해 봅니다.


1
lsnrctl status



리스너가 죽어있는 경우 아래 처럼 메시지가 나옵니다.


1
2
3
4
5
6
7
8
9
LSNRCTL for Linux: Version 11.2.0.4.0 - Production on 21-AUG-2017 14:10:08
 
Copyright (c) 19912013, Oracle.  All rights reserved.
 
Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
TNS-12541: TNS:no listener
 TNS-12560: TNS:protocol adapter error
  TNS-00511: No listener
   Linux Error: 111: Connection refused




2. 확인 사살 겸 한번 리스너를 정지합니다.


1
lsnrctl stop



3. 리스너를 다시 시작합니다.


1
lsnrctl start



반응형

+ Recent posts