[1] Instalacja GlusterFS

9 czerwca 2020 Wyłączono przez Adam [zicherka] Nogły

Zainstalujemy i skonfigurujemy GlusterFS 7, aby utworzyć klaster przechowywania.

Bardzo ważnym zaleceniem jest NIE UŻYWANIE jako partycji dla  wolumenów GlusterFS partycji [/].

W tym przykładzie wszystkie węzły klastra są skonfigurowane i ustawione tak samo (chyba, że opisano, że jest inaczej). Wszystkie węzły są na dysku [sdb1] i zamontowane do [/glusterfs].

Sieć przedstawia się następująco:

[1] Zainstaluj GlusterFS na WSZYSTKICH węzłach w klastrze.

[root@lsr01vm ~]# dnf install centos-release-gluster

[root@lsr01vm ~]# sed -i -e "s/enabled=1/enabled=0/g" /etc/yum.repos.d/CentOS-Gluster-7.repo

[root@lsr01vm ~]# dnf --enablerepo=centos-gluster7,PowerTools  install glusterfs-server

[root@lsr01vm ~]# systemctl enable --now glusterd

[root@lsr01vm ~]# gluster --version
glusterfs 7.5
Repository revision: git://git.gluster.org/glusterfs.git
Copyright (c) 2006-2016 Red Hat, Inc. <https://www.gluster.org/>
GlusterFS comes with ABSOLUTELY NO WARRANTY.
It is licensed to you under your choice of the GNU Lesser
General Public License, version 3 or any later version (LGPLv3
or later), or the GNU General Public License, version 2 (GPLv2),
in all cases as published by the Free Software Foundation.

[2] Jeżeli Firewalld jest włączony to musimy zezwolić na nasłuchiwanie usłudze GlusterFS  na WSZYSTKICH węzłach klastra.

[root@lsr01vm ~]# firewall-cmd --add-service=glusterfs --permanent
success
[root@lsr01vm ~]# firewall-cmd --reload
success