체크1

 

The Network Adapter could not establish the connection.

라는 오류가 나는 이유는 여러가지가 있겠지만,

서버의 listener 가 잘 작동하고 있다면, 다음으로 오라클 서버가 설치되어 있는 OS의 방화벽을 확인한다.

 

원도우 서버>

제어판\시스템 및 보안\Windows 방화벽

방화벽이 작동하고 있다면 방화벽을 해제하고 연결한다.

 

 

리눅스 서버>

root 계정으로 로그인 하고, 방화벽의 포트(1521)가 열려 있는지 확인한다.

 

# 상태 확인

service iptables status

or

/etc/init.d/iptables status

...

6    ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           state NEW tcp dpt:1521 
...

 

# 파일 위치

/etc/sysconfig/iptables

...

-A INPUT -m state --state NEW -m tcp -p tcp --dport 1521 -j ACCEPT

...

 

 

참고>

# start

service iptables start

/etc/init.d/iptables start

 

# stop

service iptables stop

/etc/init.d/iptables stop

 

# status

service iptables status

/etc/init.d/iptables status

 

728x90

+ Recent posts