日期:2014-05-16  浏览次数:20590 次

指定的节点无法集群化所有可能原因分析
部分可能的原因如下:
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 Setting