指定的节点无法集群化所有可能原因分析

部分可能的原因如下:
1、服务:workstation、server、remote registry 服务必须要启动;
2、win 2003需要设置开机口令(未遇到过,但是系统在做的时候就设置的有,可以考虑这个原因);
3、磁盘:磁盘的默认需要开启自动加载功能。方法为:cmd->diskpart->automount enable->exit,完事;
4、网卡:网卡没有成功的实现public为第一网段,设置方法很简单:第一网卡(系统识别的默认网卡,哪个是默认的方法就是运行route print 查看那个网卡在前面,那个在后面就明白了。正常的如下,红色部分表示的就是系统识别的顺序,带#3的为系统的第二块网卡:
C:\Documents and Settings\Administrator>route print

IPv4 Route Table
===========================================================================
Interface List
0x1 ........................... MS TCP Loopback interface
0x10003 ...00 0c 29 a6 12 b4 ...... Intel(R) PRO/1000 MT Network Connection
0x10004 ...00 0c 29 a6 12 be ...... Intel(R) PRO/1000 MT Network Connection #3

===========================================================================
===========================================================================
Active Routes:
Network Destination        Netmask          Gateway       Interface  Metric
          0.0.0.0          0.0.0.0      192.168.1.1    192.168.1.232      1
         10.1.0.0    255.255.255.0         10.1.0.2         10.1.0.2      1
         10.1.0.2  255.255.255.255        127.0.0.1        127.0.0.1      1
   10.255.255.255  255.255.255.255         10.1.0.2         10.1.0.2      1
        127.0.0.0        255.0.0.0        127.0.0.1        127.0.0.1      1
      192.168.1.0    255.255.255.0    192.168.1.232    192.168.1.232      1
    192.168.1.232  255.255.255.255        127.0.0.1        127.0.0.1      1
    192.168.1.255  255.255.255.255    192.168.1.232    192.168.1.232      1
        224.0.0.0        240.0.0.0         10.1.0.2         10.1.0.2      1
        224.0.0.0        240.0.0.0    192.168.1.232    192.168.1.232      1
  255.255.255.255  255.255.255.255         10.1.0.2         10.1.0.2      1
  255.255.255.255  255.255.255.255    192.168.1.232    192.168.1.232      1
Default Gateway:       192.168.1.1
===========================================================================
Persistent Routes:
  None
),设置public网段,第二网卡(系统识别的默认第二网卡)设置private网段。设置完成后,运行ipconfig /all 命令,查看第一个网卡连接名是否为public,如果是表示成功。正常的应该如下:
C:\Documents and Settings\Administrator>ipconfig /all

Windows IP Configuration

   Host Name . . . . . . . . . . . . : rac2
   Primary Dns Suffix  . . . . . . . :
   Node Type . . . . . . . . . . . . : Unknown
   IP Routing Enabled. . . . . . . . : No
   WINS Proxy Enabled. . . . . . . . : No

Ethernet adapter pubcard:

   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Intel(R) PRO/1000 MT Network Connection
   Physical Address. . . . . . . . . : 00-0C-29-A6-12-B4
   DHCP Enabled. . . . . . . . . . . : No
   IP Address. . . . . . . . . . . . : 192.168.1.232
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . : 192.168.1.1
   DNS Servers . . . . . . . . . . . : 192.168.1.1
                                       192.168.1.3

Ethernet adapter pricard:

   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Intel(R) PRO/1000 MT Network Connection
3
   Physical Address. . . . . . . . . : 00-0C-29-A6-12-BE
   DHCP Enabled. . . . . . . . . . . : No
   IP Address. . . . . . . . . . . . : 10.1.0.2
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . :

不是就查找下原因;
5、hosts文件:hosts文件的设置不正确。正常的设置应该如下:
# public
192.168.1.231      rac1
192.168.1.232      rac2

# private
10.1.0.1     rac1-private    rac1
10.1.0.2     rac2-private    rac2

# virtual
192.168.1.233   rac1-vip     rac1
192.168.1.234   rac2-vip     rac2

其中rac1和rac2是对应的机器物理名称。192.168网段为public。10.1网段为private。

综上就是目前我遇到的所有可能涉及到的问题原因。都碰到了。有不对的不好的,欢迎指出。

你可能感兴趣的:(集群)