【Amadeus原创】GFS 安装使用

2年前 (2022) 程序员胖胖胖虎阿
272 0 0

准备环境:

一、修改每台主机的host文件,在/etc/hosts下添加内容:

172.62.21.44 gfs1
172.62.21.43 gfs2
172.62.21.37 gfs3

二、分别安装gfs server端:

1. 安装

yum install centos-release-gluster -y

yum install -y glusterfs glusterfs-server glusterfs-fuse glusterfs-rdma

2.设置开机自启

systemctl start glusterd.service

systemctl enable glusterd.service

3.添加集群

gluster peer probe gfs1
gluster peer probe gfs2
gluster peer probe gfs3

gluster peer status

三、创建数据目录
mkdir -p /application/gluster/data

gluster volume create gfs-gluster replica 3 transport tcp gfs1:/application/gluster/data gfs2:/application/gluster/data gfs3:/application/gluster/data force

gluster volume info

gluster volume start gfs-gluster

四、客户端使用

yum install -y glusterfs glusterfs-fuse

mkdir -p /application/gfsmount/

mount -t glusterfs gfs1:gfs-gluster /application/gfsmount/

版权声明:程序员胖胖胖虎阿 发表于 2022年9月28日 上午2:48。
转载请注明:【Amadeus原创】GFS 安装使用 | 胖虎的工具箱-编程导航

相关文章

暂无评论

暂无评论...