rac_grid自检出现网络问题
原创作品,出自 “深蓝的blog” 博客,欢迎转载,转载时请务必注明以下出处,否则追究版权法律责任。 深蓝的blog:http://blog.csdn.net/huangyanlong/article/details/40735481 环境:Cent0S 6.4 64bit、grid 64bit 自检出现“TCP connectivity of subnet”
原创作品,出自 “深蓝的blog” 博客,欢迎转载,转载时请务必注明以下出处,否则追究版权法律责任。
深蓝的blog:http://blog.csdn.net/huangyanlong/article/details/40735481
环境:Cent0S 6.4 64bit、grid 64bit
自检出现“TCP connectivity of subnet”问题。
【问题】
手工进行grid自检,报出如下错误:
[grid@xzxt1 grid]$ ./runcluvfy.sh stage -pre crsinst -n xzxt1,xzxt2 -fixup -verbose
...... ...... Check: Node connectivity of subnet "192.168.56.0" Source Destination Connected? ------------------------------ ------------------------------ ---------------- xzxt2[192.168.56.31] xzxt1[192.168.56.30] yes Result: Node connectivity passed for subnet "192.168.56.0" with node(s) xzxt2,xzxt1 Check: TCP connectivity of subnet "192.168.56.0" Source Destination Connected? ------------------------------ ------------------------------ ---------------- xzxt1:192.168.56.30 xzxt2:192.168.56.31 failed ERROR: PRVF-7617 : Node connectivity between "xzxt1 : 192.168.56.30" and "xzxt2 : 192.168.56.31" failed Result: TCP connectivity check failed for subnet "192.168.56.0" Check: Node connectivity of subnet "10.10.10.0" Source Destination Connected? ------------------------------ ------------------------------ ---------------- xzxt2[10.10.10.91] xzxt1[10.10.10.90] yes Result: Node connectivity passed for subnet "10.10.10.0" with node(s) xzxt2,xzxt1 Check: TCP connectivity of subnet "10.10.10.0" Source Destination Connected? ------------------------------ ------------------------------ ---------------- xzxt1:10.10.10.90 xzxt2:10.10.10.91 failed ERROR: PRVF-7617 : Node connectivity between "xzxt1 : 10.10.10.90" and "xzxt2 : 10.10.10.91" failed Result: TCP connectivity check failed for subnet "10.10.10.0" Interfaces found on subnet "192.168.56.0" that are likely candidates for VIP are: xzxt2 eth0:192.168.56.31 xzxt1 eth0:192.168.56.30 WARNING: Could not find a suitable set of interfaces for the private interconnect Checking subnet mask consistency... Subnet mask consistency check passed for subnet "192.168.56.0". Subnet mask consistency check passed for subnet "10.10.10.0". Subnet mask consistency check passed. Result: Node connectivity check failed Checking multicast communication... Checking subnet "192.168.56.0" for multicast communication with multicast group "230.0.1.0"... PRVG-11134 : Interface "192.168.56.31" on node "xzxt2" is not able to communicate with interface "192.168.56.31" on node "xzxt2" PRVG-11134 : Interface "192.168.56.31" on node "xzxt2" is not able to communicate with interface "192.168.56.30" on node "xzxt1" PRVG-11134 : Interface "192.168.56.30" on node "xzxt1" is not able to communicate with interface "192.168.56.31" on node "xzxt2" PRVG-11134 : Interface "192.168.56.30" on node "xzxt1" is not able to communicate with interface "192.168.56.30" on node "xzxt1" Checking subnet "192.168.56.0" for multicast communication with multicast group "224.0.0.251"... PRVG-11134 : Interface "192.168.56.31" on node "xzxt2" is not able to communicate with interface "192.168.56.31" on node "xzxt2" PRVG-11134 : Interface "192.168.56.31" on node "xzxt2" is not able to communicate with interface "192.168.56.30" on node "xzxt1" PRVG-11134 : Interface "192.168.56.30" on node "xzxt1" is not able to communicate with interface "192.168.56.31" on node "xzxt2" PRVG-11134 : Interface "192.168.56.30" on node "xzxt1" is not able to communicate with interface "192.168.56.30" on node "xzxt1" Checking subnet "10.10.10.0" for multicast communication with multicast group "230.0.1.0"... PRVG-11134 : Interface "10.10.10.91" on node "xzxt2" is not able to communicate with interface "10.10.10.91" on node "xzxt2" PRVG-11134 : Interface "10.10.10.91" on node "xzxt2" is not able to communicate with interface "10.10.10.90" on node "xzxt1" PRVG-11134 : Interface "10.10.10.90" on node "xzxt1" is not able to communicate with interface "10.10.10.91" on node "xzxt2" PRVG-11134 : Interface "10.10.10.90" on node "xzxt1" is not able to communicate with interface "10.10.10.90" on node "xzxt1" Checking subnet "10.10.10.0" for multicast communication with multicast group "224.0.0.251"... PRVG-11134 : Interface "10.10.10.91" on node "xzxt2" is not able to communicate with interface "10.10.10.91" on node "xzxt2" PRVG-11134 : Interface "10.10.10.91" on node "xzxt2" is not able to communicate with interface "10.10.10.90" on node "xzxt1" PRVG-11134 : Interface "10.10.10.90" on node "xzxt1" is not able to communicate with interface "10.10.10.91" on node "xzxt2" PRVG-11134 : Interface "10.10.10.90" on node "xzxt1" is not able to communicate with interface "10.10.10.90" on node "xzxt1" ...... ......
【解决】
[root@xzxt1 network-scripts]# vi ifcfg-eth0
--去掉GATEWAY=192.168.56.1
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=static
IPADDR=192.168.56.30
NETMASK=255.255.255.0
[root@xzxt1 network-scripts]# vi ifcfg-eth1
--去掉GATEWAY=10.10.10.1
DEVICE=eth1
ONBOOT=yes
BOOTPROTO=static
IPADDR=10.10.10.90
NETMASK=255.255.255.0
重启服务器后,再次自检此问题不再出现。
原创作品,出自 “深蓝的blog” 博客,欢迎转载,转载时请务必注明以下出处,否则追究版权法律责任。
深蓝的blog:http://blog.csdn.net/huangyanlong/article/details/40735481

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics
![WLAN expansion module has stopped [fix]](https://img.php.cn/upload/article/000/465/014/170832352052603.gif?x-oss-process=image/resize,m_fill,h_207,w_330)
If there is a problem with the WLAN expansion module on your Windows computer, it may cause you to be disconnected from the Internet. This situation is often frustrating, but fortunately, this article provides some simple suggestions that can help you solve this problem and get your wireless connection working properly again. Fix WLAN Extensibility Module Has Stopped If the WLAN Extensibility Module has stopped working on your Windows computer, follow these suggestions to fix it: Run the Network and Internet Troubleshooter to disable and re-enable wireless network connections Restart the WLAN Autoconfiguration Service Modify Power Options Modify Advanced Power Settings Reinstall Network Adapter Driver Run Some Network Commands Now, let’s look at it in detail

We need to use the correct DNS when connecting to the Internet to access the Internet. In the same way, if we use the wrong dns settings, it will prompt a dns server error. At this time, we can try to solve the problem by selecting to automatically obtain dns in the network settings. Let’s take a look at the specific solutions. How to solve win11 network dns server error. Method 1: Reset DNS 1. First, click Start in the taskbar to enter, find and click the "Settings" icon button. 2. Then click the "Network & Internet" option command in the left column. 3. Then find the "Ethernet" option on the right and click to enter. 4. After that, click "Edit" in the DNS server assignment, and finally set DNS to "Automatic (D

This article will introduce the solution to the problem that the globe symbol is displayed on the Win10 system network but cannot access the Internet. The article will provide detailed steps to help readers solve the problem of Win10 network showing that the earth cannot access the Internet. Method 1: Restart directly. First check whether the network cable is not plugged in properly and whether the broadband is in arrears. The router or optical modem may be stuck. In this case, you need to restart the router or optical modem. If there are no important things being done on the computer, you can restart the computer directly. Most minor problems can be quickly solved by restarting the computer. If it is determined that the broadband is not in arrears and the network is normal, that is another matter. Method 2: 1. Press the [Win] key, or click [Start Menu] in the lower left corner. In the menu item that opens, click the gear icon above the power button. This is [Settings].

LOL cannot connect to the server, please check the network. In recent years, online games have become a daily entertainment activity for many people. Among them, League of Legends (LOL) is a very popular multiplayer online game, attracting the participation and interest of hundreds of millions of players. However, sometimes when we play LOL, we will encounter the error message "Unable to connect to the server, please check the network", which undoubtedly brings some trouble to players. Next, we will discuss the causes and solutions of this error. First of all, the problem that LOL cannot connect to the server may be

Written above & The author’s personal understanding of maps as key information for downstream applications of autonomous driving systems is usually represented by lanes or center lines. However, the existing map learning literature mainly focuses on detecting geometry-based topological relationships of lanes or sensing centerlines. Both methods ignore the inherent relationship between lane lines and center lines, that is, lane lines bind center lines. Although simply predicting two types of lanes in one model are mutually exclusive in the learning objective, this paper proposes lanesegment as a new representation that seamlessly combines geometric and topological information, thus proposing LaneSegNet. This is the first end-to-end mapping network that generates lanesegments to obtain a complete representation of road structure. LaneSegNet has two levels

1. Check the wifi password: Make sure the wifi password you entered is correct and pay attention to case sensitivity. 2. Confirm whether the wifi is working properly: Check whether the wifi router is running normally. You can connect other devices to the same router to determine whether the problem lies with the device. 3. Restart the device and router: Sometimes, there is a malfunction or network problem with the device or router, and restarting the device and router may solve the problem. 4. Check the device settings: Make sure the wireless function of the device is turned on and the wifi function is not disabled.

In order to use our computer, in addition to some hardware, it also needs to be connected to a stable network. Many friends have discovered that the network in the computer is divided into public network and private network. Many people are curious about how to convert the public network into a private network. . Win10 Home Edition public network is changed to a private network 1. Advanced settings of the Advanced Sharing Center 1. First, we directly press the win+R shortcut key combination to summon the run pop-up window, then enter "control panel" here, and click OK to open the control panel . 2. Then we select Network and Internet--Network and Sharing Center--Change advanced sharing settings. 3. Then we click on the dedicated option in the more advanced sharing settings interface and check the "Enable

In daily life and work, we often need to share files and folders between different devices. Windows 11 system provides convenient built-in folder sharing functions, allowing us to easily and safely share the content we need with others within the same network while protecting the privacy of personal files. This feature makes file sharing simple and efficient without worrying about leaking private information. Through the folder sharing function of Windows 11 system, we can cooperate, communicate and collaborate more conveniently, improving work efficiency and life convenience. In order to successfully configure a shared folder, we first need to meet the following conditions: All devices (participating in sharing) are connected to the same network. Enable Network Discovery and configure sharing. Know the target device
