四个节点,有两个是新增长的节点,两个老节点间组成集群没有问题,新增长了两个节点,不管是四个组成集群node
# --------------------------------- Discovery ---------------------------------- # # Pass an initial list of hosts to perform discovery when new node is started: # The default list of hosts is ["127.0.0.1", "[::1]"] # discovery.zen.ping.unicast.hosts: ["10.96.91.208","10.96.91.209","10.96.91.210","10.96.91.211"] # # Prevent the "split brain" by configuring the majority of nodes (total number of master-eligible nodes / 2 + 1): # discovery.zen.minimum_master_nodes: 3 # # For more information, consult the zen discovery module documentation. #
仍是两个节点集群(新旧搭配)服务器
# --------------------------------- Discovery ---------------------------------- # # Pass an initial list of hosts to perform discovery when new node is started: # The default list of hosts is ["127.0.0.1", "[::1]"] # discovery.zen.ping.unicast.hosts: ["10.96.91.208","10.96.91.210"] # # Prevent the "split brain" by configuring the majority of nodes (total number of master-eligible nodes / 2 + 1): # discovery.zen.minimum_master_nodes: 2 # # For more information, consult the zen discovery module documentation.
查看日志,能够发现是网络问题。
排查网络
网卡的网络配置网络
cd /etc/sysconfig/network/ more ifcfg-eth0
网络路由配置spa
more routes
网关配置日志
more /etc/resolv.conf
这些配置四台服务器基本都是同样的。因此不是配置问题
继续检查ping 和 traceroute
ping没有问题
traceroute显示不同,发现有了一个空跳。怀疑是防火墙的问题code
查看防火墙的状态orm
chkconfig --list|grep fire
关闭防火墙blog
cd /etc/init.d/ ./SuSEfirewall2_setup stop ./SuSEfirewall2_init stop
开机关闭防火墙路由
chkconfig SuSEfirewall2_setup off
chkconfig SuSEfirewall2_init off
至此,解决问题it