2019년 5월 30일 목요일

INS-41112


  • 코드
    • INS-41112
  • 원인
    • RAC 설치과정중에 두개의 Node ping이나 SSH등은 가능하지만 firewalld , iptables 종료되지 않을때 발생
  • 해결
    • Step - 1
                 Iptables  , firewalld 서비스를 종료후off 시킨다
                 (차후 문제 발생을 예방하기 위해 firewalld 서비스도 종료시킨다)
                             # service iptables stop
                             Redirecting to /bin/systemctl stop  iptables.service

                             # chkconfig iptables off
                             Note: Forwarding request to 'systemctl disable iptables.service'.

                             # systemctl stop firewalld

                             # systemctl disable firewalld
                             rm '/etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service'
                             rm '/etc/systemd/system/basic.target.wants/firewalld.service'
    • Step - 2
                             보안 관련 서비스를 종료시킨 이후에 검증과정을 위해 GRID_HOME 소유권자 계정
                             으로 아래 Script 실행시킨뒤 pass / fail 확인한다

                             $ cd /u01/media/grid/
                             $ ./runcluvfy.sh comp nodecon -n rac1,rac2 -verbose
                             (붉은 글씨는 각각 node이름을 작성한다 ( /etc/hosts 작성되어있는)
                             
                             FAIL 일때 최종 결과
                             Result: Node connectivity check failed
                             Verification of node connectivity was unsuccessful.
                             Checks did not pass for the following node(s):
                             
                             rac1 
                             PASS 일때 최종 결과
                             Result: Node connectivity check passed
                             Verification of node connectivity was successful.

                             모든 Full Script 전문
                             Verifying node connectivity
                             Checking node connectivity...
                             Checking hosts config file...

                             Node Name                             Status                 
                             ------------------------------------  ------------------------
                             rac2                                  passed                 
                             rac1                                  passed                 
                             
                             Verification of the hosts config file successful
                             
                             Interface information for node "rac2"
                              Name   IP Address      Subnet          Gateway         Def. Gateway    HW Address        MTU 
                             ------ --------------- --------------- --------------- --------------- ----------------- -----
                              enp0s3 192.168.3.98    192.168.3.0     0.0.0.0         192.168.3.1     08:00:27:B2:A3:34 1500
                             enp0s8 192.168.56.9    192.168.56.0    0.0.0.0         192.168.3.1     08:00:27:05:E9:6E 1500
                             enp0s9 192.168.1.9     192.168.1.0     0.0.0.0         192.168.3.1     08:00:27:D5:3C:E6 1500 


Interface information for node "rac1"
 Name   IP Address      Subnet          Gateway         Def. Gateway    HW Address        MTU  
 ------ --------------- --------------- --------------- --------------- ----------------- ------
 enp0s3 192.168.3.97    192.168.3.0     0.0.0.0         192.168.3.1     08:00:27:C0:AD:2E 1500 
 enp0s8 192.168.56.8    192.168.56.0    0.0.0.0         192.168.3.1     08:00:27:08:4B:96 1500 
 enp0s9 192.168.1.8     192.168.1.0     0.0.0.0         192.168.3.1     08:00:27:6A:85:57 1500 


Check: Node connectivity of subnet "192.168.3.0"
  Source                          Destination                     Connected?     
  ------------------------------  ------------------------------  ----------------
  rac2[192.168.3.98]              rac1[192.168.3.97]              yes            
Result: Node connectivity passed for subnet "192.168.3.0" with node(s) rac2,rac1


Check: TCP connectivity of subnet "192.168.3.0"
  Source                          Destination                     Connected?     
  ------------------------------  ------------------------------  ----------------
  rac1:192.168.3.97               rac2:192.168.3.98               passed         
Result: TCP connectivity check passed for subnet "192.168.3.0"


Check: Node connectivity of subnet "192.168.56.0"
  Source                          Destination                     Connected?     
  ------------------------------  ------------------------------  ----------------
  rac2[192.168.56.9]              rac1[192.168.56.8]              yes            
Result: Node connectivity passed for subnet "192.168.56.0" with node(s) rac2,rac1


Check: TCP connectivity of subnet "192.168.56.0"
  Source                          Destination                     Connected?     
  ------------------------------  ------------------------------  ----------------
  rac1:192.168.56.8               rac2:192.168.56.9               passed         
Result: TCP connectivity check passed for subnet "192.168.56.0"


Check: Node connectivity of subnet "192.168.1.0"
  Source                          Destination                     Connected?     
  ------------------------------  ------------------------------  ----------------
  rac2[192.168.1.9]               rac1[192.168.1.8]               yes            
Result: Node connectivity passed for subnet "192.168.1.0" with node(s) rac2,rac1


Check: TCP connectivity of subnet "192.168.1.0"
  Source                          Destination                     Connected?     
  ------------------------------  ------------------------------  ----------------
  rac1:192.168.1.8                rac2:192.168.1.9                passed         
Result: TCP connectivity check passed for subnet "192.168.1.0"


Interfaces found on subnet "192.168.3.0" that are likely candidates for VIP are:
rac2 enp0s3:192.168.3.98
rac1 enp0s3:192.168.3.97

Interfaces found on subnet "192.168.56.0" that are likely candidates for a private interconnect are:
rac2 enp0s8:192.168.56.9
rac1 enp0s8:192.168.56.8

Interfaces found on subnet "192.168.1.0" that are likely candidates for a private interconnect are:
rac2 enp0s9:192.168.1.9
rac1 enp0s9:192.168.1.8
Checking subnet mask consistency...
Subnet mask consistency check passed for subnet "192.168.3.0".
Subnet mask consistency check passed for subnet "192.168.56.0".
Subnet mask consistency check passed for subnet "192.168.1.0".
Subnet mask consistency check passed.

Result: Node connectivity check passed


Verification of node connectivity was successful.


  • 참고 MOS 문서번호 & 기타

      • INS-41112: Specified network interface doesnt maintain connectivity across cluster nodes.
                                 INS-41112: Specified network interface doesnt maintain connectivity across cluster nodes.
                                 Cause: Installer has detected that network interface string does not maintain
                                 connectivity on all cluster nodes.
                                 Action: Ensure that the chosen interface has been configured across all 
                                 cluster nodes.

    댓글 없음:

    댓글 쓰기