rac_grid自检出现网络问题

原创作品,出自 “深蓝的blog” 博客,欢迎转载,转载时请务必注明以下出处,否则追究版权法律责任。

深蓝的blog:http://blog.csdn.net/huangyanlong/article/details/40735481

环境:Cent0S 6.4 64bit、grid 64bit

自检出现“TCP connectivity of subnet”问题。

【问题】

手工进行grid自检,报出如下错误:

[[email protected] 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"
......
......

【解决】

[[email protected] 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

[[email protected] 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

时间: 2024-10-12 21:13:36

rac_grid自检出现网络问题的相关文章

rac_grid自检无法正常进行报PRVF-4007

原创作品,出自 "深蓝的blog" 博客.欢迎转载,转载时请务必注明下面出处.否则追究版权法律责任. 深蓝的blog:http://blog.csdn.net/huangyanlong/article/details/40976103 grid自检报PRVF-4007 : User equivalence check failed for user "grid" [实验环境] 实验平台:WIN7 旗舰版 64bit 虚拟机软件:VM VirtualBox 4.2 虚

rac_grid自检提示缺少cvuqdisk包

原创作品,出自 "深蓝的blog" 博客,欢迎转载,转载时请务必注明以下出处,否则追究版权法律责任. 深蓝的blog:http://blog.csdn.net/huangyanlong/article/details/40779137 环境:CentOS 6.4 64bit.grid 64bit 错误描述:进行grid自检时报错,缺少cvuqdisk包 错误解决:安装cvuqdisk包 操作步骤: 解决cvuqdisk包缺失问题,到grid软件路径下(在rpm路径下即可找到该安装包),

rac_grid自检提示缺少pdksh-5.2包

原创作品,出自 "深蓝的blog" 博客,欢迎转载,转载时请务必注明以下出处,否则追究版权法律责任. 深蓝的blog:http://blog.csdn.net/huangyanlong/article/details/40779171 环境:CentOS 6.4 64bit.grid 64bit 错误描述:进行grid自检时报错,缺少pdksh-5.2包(前提已经安装了ksh包) 错误解决:安装pdksh包 注意:安装pdksh包时需要先卸载掉ksh包 方法:到网上下载或到CentOS

radhat6.6上安装oracle12c RAC (一)

软件环境:VMware.redhat6.6.oracle12c(linuxx64_12201_database.zip).12cgrid(linuxx64_12201_grid_home.zip) 一.前期准备工作 虚拟机先配置一个节点即可,第二个节点由第一个节点克隆再修改相关参数(环境变量中的sid名称.网络等) 1.1.服务器基本配置(操作系统.安装包.网络.用户.环境变量) 1.1.1.服务器安装操作系统 选择最小安装即可,磁盘分配:35G,内存:4G(最少可能也得2G),swap:8G

Linux 安装

http://www.ubuntu.org.cn/download/alternative-downloads 下载地址: http://releases.ubuntu.com/ 国内镜像:http://mirrors.aliyun.com/ubuntu-releases/ 配制vmware: https://my.oschina.net/liangbo/blog/206553 最近想体验一下Ubuntu系统,之后在虚拟机上安装Ubuntu 14.04.4,安装虚拟机步骤可以参考:http://

网络安全技术(三)

八,防火墙的安装与配置 (1)硬件防火墙的网络接口 1内网 内网一般包括企业的内部网络或是内部网络的一部分. 2外网 外网指的是非企业内部的网络或是Internet,内网与外网之间进行通信,要通过防火墙来实现访问限制. 3DMZ(非军事化区) DMZ是一个隔离的网络,可以在这个网络中放置Web服务器或是E-mail服务器等,外网的用户可以访问DMZ. (2)防火墙的安装与初始配置 1给防火墙加电令它启动 2将防火墙的Console口连接到计算机的串口上,并通过Windows操作系统的超级终端,进

无线传感器网络

Technorati Tags: ZigBee技术 无线传感器网络        时代进步,技术推陈出新,而作为信息获取最重要和最基本的技术-传感器技术,也得到了极大的发展.传感器信息获取技术已经从过去的单一化渐渐向集成化.微型化和网络化方向发展,将会带来一场信息革命. 具有感知能力.计算能力和通信能力的无线传感器网络WSN,综合了传感器技术.嵌人式计算技术.分布式信息处理技术和通信技术,能够协作地实时监测.感知和采集网络分布区域内的各种环境或监测对象的信息,并对这些信息进行处理,获得详尽而准确

CCNA网络工程师学习进程(4)网络设备的基本配置和详细介绍

    网络设备(路由器.交换机和防火墙等)与计算机一样需要操作系统.网络设备采用专用的操作系统,统称为IOS(Internetwork Operating System,网络操作系统).     (1)网络设备的常见连接方式: 网络设备的常见连接方式有四种: 1.CON:Console口连接终端或运行终端仿真软件(如Windows的超级终端)的PC. 2.Telnet:通过Telnet远程登录配置交换机. 3.TFTP:可以通过TFTP服务器下载配置信息,TFTP服务器可以运行在UNIX工作站

VM虚拟机系统时间同步网络时间并登录用户自动校正时间

VM虚拟机大家都用,我在用完后,经常使用"挂起客户机",但是这样一来,系统恢复启动很快,但是少了正常的系统自检,包括和网络同步时间. 今天在虚拟机上测试"find /root/Text -mtime +3 -name "Service.log.*" -exec rm -f {} \;",总是不成功,反复看了几遍,也对照网上格式,命令没写错,结果无意中发现系统时间是上次"挂起"的时间. 为了时间准确,选择用网络同步: #ntpd