CentOS Stream8にGlusterFS9.4 サーバーをインストールする

環境
# cat /etc/redhat-release
CentOS Stream release 8

分散ファイルシステム GlusterFS をインストールして、ストレージクラスターを構成します
インストールの方法
1.リポジトリをインストールします

# dnf -y install centos-release-gluster9
# sed -i -e "s/enabled=1/enabled=0/g" /etc/yum.repos.d/CentOS-Gluster-9.repo

2.glusterfs-serverをインストールします

# dnf --enablerepo=centos-gluster9,powertools -y install glusterfs-server

3.自動起動と起動を行います

# systemctl enable --now glusterd

ステータスを確認します
# systemctl status glusterd
● glusterd.service – GlusterFS, a clustered file-system server
Loaded: loaded (/usr/lib/systemd/system/glusterd.service; enabled; vendor preset: enabled)
Active: active (running) since Sat 2021-12-25 10:18:47 JST; 44s ago

停止
# systemctl stop glusterd
起動
# systemctl start glusterd
再起動
# systemctl restart glusterd

4.バージョンを確認します

#  gluster --version
glusterfs 9.4
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.

5.GlusterFS サービスを許可します

# firewall-cmd --add-service=glusterfs
success
# firewall-cmd --runtime-to-permanent
success

 

CentOS Stream 8

Posted by arkgame