1. 环境准备
a.本例将采用3台服务器, Centos7.3系统、关闭防火墙和Selinux。配置/etc/hosts,三台都操作
[root@jumpserver ~]# vim /etc/hosts 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 10.0.3.60 server1 10.0.3.199 server2 10.0.3.201 server3
b. 时钟同步
集群内部的时间非常重要,如果服务器间的时间有误差,可能会给集群间的通信带来麻烦。配置时间同步,三台都操作
yum install ntpdate echo "*/5 * * * * root /usr/sbin/ntpdate ntp1.aliyun.com" >>/etc/crontab
c. 建立yum仓库
yum install centos-release-gluster