1、分布式文件系统

1.1 什么是分布式文件系统

相对于本机端的文件系统而言,分布式文件系统(英语:Distributed file system, DFS),或是网络文件系统(英语:Network File System),是一种允许文件通过网络在多台主机上分享的文件系统,可让多机器上的多用户分享文件和存储空间。
  在这样的文件系统中,客户端并非直接访问底层的数据存储区块,而是通过网络,以特定的通信协议和服务器沟通。借由通信协议的设计,可以让客户端和服务器端都能根据访问控制清单或是授权,来限制对于文件系统的访问。

1.2 glusterfs是什么

  Gluster是一个分布式文件系统。它是各种不同的存储服务器之上的组合,这些服务器由以太网或无限带宽技术Infiniband以及远程直接内存访问RDMA互相融汇,最终所形成的一个大的并行文件系统网络。
分布式文件系统---GlusterFS - 图1
  它有包括云计算在内的多重应用,诸如:生物医药科学,文档存储。Gluster是由GNU托管的自由软件,证书是AGPL。Gluster公司是Gluster的首要商业赞助商,且提供商业产品以及基于Gluster的解决方案。

2、快速部署GlusterFS

2.1 环境说明

注意:最少需要拥有两块硬盘
分布式文件系统---GlusterFS - 图2
系统环境说明
glusterfs01信息

  1. [root@glusterfs01 ~]# hostname
  2. glusterfs01
  3. [root@glusterfs01 ~]# uname -r
  4. 3.10.0-693.el7.x86_64
  5. [root@glusterfs01 ~]# sestatus
  6. SELinux status: disabled
  7. [root@glusterfs01 ~]# systemctl status firewalld.service
  8. firewalld.service - firewalld - dynamic firewall daemon
  9. Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)
  10. Active: inactive (dead)
  11. Docs: man:firewalld(1)
  12. [root@glusterfs01 ~]# hostname -I
  13. 10.0.0.120 172.16.1.120

glusterfs02信息

  1. [root@glusterfs02 ~]# uname -r
  2. 3.10.0-693.el7.x86_64
  3. [root@glusterfs02 ~]# sestatus
  4. SELinux status: disabled
  5. [root@glusterfs02 ~]# systemctl status firewalld.service
  6. firewalld.service - firewalld - dynamic firewall daemon
  7. Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)
  8. Active: inactive (dead)
  9. Docs: man:firewalld(1)
  10. [root@glusterfs02 ~]# hostname -I
  11. 10.0.0.121 172.16.1.121

注意配置好hosts解析

2.2 前期准备

gluster01主机挂载磁盘

  1. [root@glusterfs01 ~]# mkfs.xfs /dev/sdb
  2. [root@glusterfs01 ~]# mkdir -p /data/brick1
  3. [root@glusterfs01 ~]# echo '/dev/sdb /data/brick1 xfs defaults 0 0' >> /etc/fstab
  4. [root@glusterfs01 ~]# mount -a && mount

gluster02主机挂载磁盘

  1. [root@glusterfs02 ~]# mkfs.xfs /dev/sdb
  2. [root@glusterfs02 ~]# mkdir -p /data/brick1
  3. [root@glusterfs02 ~]# echo '/dev/sdb /data/brick1 xfs defaults 0 0' >> /etc/fstab
  4. [root@glusterfs02 ~]# mount -a && mount

3、部署GlusterFS

3.1 安装软件

在两个节点上操作

  1. yum install centos-release-gluster -y
  2. # 修改镜像源加速
  3. sed -i 's#http://mirror.centos.org#https://mirrors.shuosc.org#g' /etc/yum.repos.d/CentOS-Gluster-3.12.repo
  4. yum install -y glusterfs glusterfs-server glusterfs-fuse glusterfs-rdma

软件版本

  1. [root@glusterfs01 ~]# rpm -qa glusterfs
  2. glusterfs-3.12.5-2.el7.x86_64

3.2 启动GlusterFS

在两个节点上都进行操作

  1. [root@glusterfs01 ~]# systemctl start glusterd.service
  2. [root@glusterfs01 ~]# systemctl status glusterd.service
  3. glusterd.service - GlusterFS, a clustered file-system server
  4. Loaded: loaded (/usr/lib/systemd/system/glusterd.service; disabled; vendor preset: disabled)
  5. Active: active (running) since 2018-02-07 21:02:44 CST; 2s ago
  6. Process: 1923 ExecStart=/usr/sbin/glusterd -p /var/run/glusterd.pid --log-level $LOG_LEVEL $GLUSTERD_OPTIONS (code=exited, status=0/SUCCESS)
  7. Main PID: 1924 (glusterd)
  8. CGroup: /system.slice/glusterd.service
  9. └─1924 /usr/sbin/glusterd -p /var/run/glusterd.pid --log-level INFO
  10. 2 07 21:02:44 glusterfs01 systemd[1]: Starting GlusterFS, a clustered file-system server...
  11. 2 07 21:02:44 glusterfs01 systemd[1]: Started GlusterFS, a clustered file-system server.
  12. Hint: Some lines were ellipsized, use -l to show in full.

3.3 配置互信(可信池)

在glusterfs01上操作

  1. [root@glusterfs01 ~]# gluster peer probe glusterfs02
  2. peer probe: success.

在glusterfs02上操作

  1. [root@glusterfs02 ~]# gluster peer probe glusterfs01
  2. peer probe: success.

注意:一旦建立了这个池,只有受信任的成员可能会将新的服务器探测到池中。新服务器无法探测池,必须从池中探测。

3.4 检查对等状态

  1. [root@glusterfs01 ~]# gluster peer status
  2. Number of Peers: 1
  3. Hostname: 10.0.0.121
  4. Uuid: 61d043b0-5582-4354-b475-2626c88bc576
  5. State: Peer in Cluster (Connected)
  6. Other names:
  7. glusterfs02

注意:看到的UUID应不相同。

  1. [root@glusterfs02 ~]# gluster peer status
  2. Number of Peers: 1
  3. Hostname: glusterfs01
  4. Uuid: e2a9367c-fe96-446d-a631-194970c18750
  5. State: Peer in Cluster (Connected)

3.5 建立一个GlusterFS卷

在两个节点上操作

  1. mkdir -p /data/brick1/gv0

在任意一个节点上执行

  1. [root@glusterfs01 ~]# gluster volume create gv0 replica 2 glusterfs01:/data/brick1/gv0 glusterfs02:/data/brick1/gv0
  2. Replica 2 volumes are prone to split-brain. Use Arbiter or Replica 3 to avoid this. See: http://docs.gluster.org/en/latest/Administrator%20Guide/Split%20brain%20and%20ways%20to%20deal%20with%20it/.
  3. Do you still want to continue?
  4. (y/n) y
  5. volume create: gv0: success: please start the volume to access data

启用存储卷

  1. [root@glusterfs01 ~]# gluster volume start gv0
  2. volume start: gv0: success

查看信息

  1. [root@glusterfs01 ~]# gluster volume info
  2. Volume Name: gv0
  3. Type: Replicate
  4. Volume ID: 865899b9-1e5a-416a-8374-63f7df93e4f5
  5. Status: Started
  6. Snapshot Count: 0
  7. Number of Bricks: 1 x 2 = 2
  8. Transport-type: tcp
  9. Bricks:
  10. Brick1: glusterfs01:/data/brick1/gv0
  11. Brick2: glusterfs02:/data/brick1/gv0
  12. Options Reconfigured:
  13. transport.address-family: inet
  14. nfs.disable: on
  15. performance.client-io-threads: off

至此,服务端配置结束

4、客户端测试

4.1 安装客户端工具

挂载测试

  1. [root@clsn6 ~]# yum install centos-release-gluster -y
  2. [root@clsn6 ~]# yum install -y glusterfs glusterfs-fuse

注意:要配置好hosts文件,否则连接会出错

  1. [root@clsn6 ~]# mount.glusterfs glusterfs01:/gv0 /mnt
  2. [root@clsn6 ~]# df -h
  3. Filesystem Size Used Avail Use% Mounted on
  4. /dev/sda3 19G 2.2G 16G 13% /
  5. tmpfs 238M 0 238M 0% /dev/shm
  6. /dev/sda1 190M 40M 141M 22% /boot
  7. glusterfs01:/gv0 100G 33M 100G 1% /mnt

4.2 复制文件测试

  1. [root@clsn6 ~]# for i in `seq -w 1 100`; do cp -rp /var/log/messages /mnt/copy-test-$i; done

客户端检查文件

  1. [root@clsn6 ~]# ls -lA /mnt/copy* | wc -l
  2. 10

服务节点检查文件

  1. [root@glusterfs01 ~]# ls -lA /data/brick1/gv0/copy* |wc -l
  2. 100

服务节点检查文件

  1. [root@glusterfs02 ~]# ls -lA /data/brick1/gv0/copy* |wc -l
  2. 100

至此Glusterfs简单配置完成

5、参考文献

http://docs.gluster.org/en/latest/Quick-Start-Guide/Quickstart/ https://www.cnblogs.com/jicki/p/5801712.html https://mirrors.shuosc.org/centos/7/