Oracle 19c RAC INS-40724

chenoracle發表於2020-09-19

問題現象:

Oracle 19C RAC安裝grid,安裝進度到Grid Plug and Play時,輸入Cluster Name,SCAN Name等,Next報錯如下:

[INS-40724] No locally defined network interface matches the SCAN subnet.

詳細資訊:

Cause - None of the locally defined network interfaces has a subnet matching the SCAN subnet.  

Action - Define a public interface with a subnet matching the one you want to use for the SCAN.

原因分析:

INS-40724錯誤通常有以下幾個原因導致的:

1 /etc/hosts或DNS配置有問題。

2 私有網路和公共網路在同一網段。

3 網路配置有問題。

 

檢查 /etc/hosts和網段沒有問題

ifconfig -a檢查發現兩塊公共網路卡繫結bond後,broadcast地址不對,廣播地址居然和ip地址一樣。

[grid@sy- cjc -db01 crs]$ ifconfig -a

bond0: flags=5187<UP,BROADCAST,RUNNING,MASTER,MULTICAST>  mtu 1500
        inet 192.100.100.30  netmask 255.255.255.255  broadcast 192.100.100.30
        inet6 fe80::ef58:4b63:b400:4394  prefixlen 64  scopeid 0x20<link>
        ether 80:68:33:6c:96:33  txqueuelen 1000  (Ethernet)
        RX packets 44801  bytes 10847804 (10.3 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 68949  bytes 71116587 (67.8 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

解決方案:

重新進行公共網路卡繫結,更改broadcast

1 檢視網路卡資訊

nmcli connection show

2 刪除現有網路卡繫結

注意:

(1) 刪除時遠端連線會中斷,建議在機房本機操作,或通過帶外連線進行操作。

nmcli connection delete bond-bond0

nmcli connection delete bond-slave-enp0s 1

nmcli connection delete bond-slave-enp0s 2

3 重新繫結

nmcli connection add type bond ifname bond0 mode 1 ip4 192.100.100.30/24 ipv4.gateway 192.100.100.254

nmcli connection add type bond-slave ifname enp0s 1  master bond0

nmcli connection add type bond-slave ifname enp0s 2  master bond0

4 檢視網路卡狀態

nmcli connection show

cat /proc/net/bonding/bond0

5 ifconfig -a檢查

廣播地址已變成192.100.100.255

6 在此執行grid安裝,可以正常next。

歡迎關注我的微信公眾號"IT小Chen",共同學習,共同成長!!

Oracle 19c RAC INS-40724 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29785807/viewspace-2722492/,如需轉載,請註明出處,否則將追究法律責任。

相關文章