Almost-Native

(RAC 설치 에러) [INS-41116] Installer has detected that the selected following nodes do not have connectivity with other cluster nodes through the selected interface. PRVG-11067, PRVG-11095, INS-32070 본문

Java 프로그램 개발, IT

(RAC 설치 에러) [INS-41116] Installer has detected that the selected following nodes do not have connectivity with other cluster nodes through the selected interface. PRVG-11067, PRVG-11095, INS-32070

2021. 5. 9. 13:29

오라클 RAC 19c 를 설치하다가 INS-41116 에러를 만난 적이 있어 한참을 헤매다가 해결하게되어 정리합니다.

 

 

분명히 Public, Private Network 모두 Ping 도 잘 가고, ssh 연결도 되는데, 자꾸 위와같이 연결이 안된다고 나옵니다.

[Details] 버튼을 눌러서 자세히 에러 내역을 확인하면 아래와 같습니다.

 

Additional Information:
Summary of node specific errors 

rh8rac2 
- PRVG-11067 : TCP connectivity from node "rh8rac2": "192.168.1.174" to node "rh8rac1": "192.168.1.173" failed.
  PRVG-11095 : The TCP system call "connect" failed with error "113" while executing exectask on node "rh8rac2"

No route to host 
- Cause: Errors occurred while attempting to establish Transmission
         Control Protocol (TCP) connectivity between the identified two
         interfaces. 
- Action: Ensure that there are no firewalls blocking TCP operations and no
         process monitors running that can interfere with programs''
         network operations. 

 

그냥 무시하고 넘어가려고 하면, INS-32070 에러를 만나면서 결국은 못넘어가게 됩니다.

 

[INS-32070] Could not remove the nodes [rh8rac2] corresponding to following error code: INS-41116.

 

결국, 원인은 방화벽 때문이었습니다. ㅎㅎ

 

RAC 처음 인스톨 시작하기 훨씬 전에 분명히 꺼뒀었던것 같은데...  쩝

 

 

레드햇이나 오라클 리눅스 7, 8 버전에서는 systemctl status firewalld 커맨드로 방화벽 기동여부를 확인할 수 있습니다.

그 이전 버전에서는 iptables 커맨드를 이용합니다.

 

아래의 커맨드로 방화벽을 내려놓을 수 있습니다. 

   > systemctl stop firewalld
   > systemctl disable firewalld

 

위 커맨드로 방화벽 내리고 다시 진행해보면 잘 넘어갑니다~

 

Comments