[오라클 에러] ORA-12505 리스너 에러
2021. 10. 13. 11:00ㆍError
Cannot create PoolableConnectionFactory (Listener refused the connection with the following error:
ORA-12505, TNS:listener does not currently know of SID given in connect descriptor
해당 에러가 뜨면 오라클 리스너 에러일 것이다. 오라클 데이터베이스 접근시 사용하고 있는 SID를 확인하면 된다.
예를 들어 이와 같이 데이터베이스 접근 소스를 받아 올경우 setUrl의 값이 sql developer에 설정한 값과 동일한지 확인해야한다.
sql developer를 확인해보니 setUrl에서 설정한 orcl과 다른 xe로 작성되어있다. 이처럼 SID가 맞지 않을 경우
이와 같은 Cannot create PoolableConnectionFactory (Listener refused the connection with the following error:
ORA-12505, TNS:listener does not currently know of SID given in connect descriptor 에러가 발생한다.
해결방법은 sql developer에서 설정한 SID 값을 맞춰주면 된다.