Suse12.1 - rpm部署GlusterFS分布式存储

1.zypper 安装各种库

zypper in bison openssl* libacl* sqlite libxml2*

zypper in libxml++* fuse fuse-devel

zyypper in openssl-devel libaio-devel bison bison-devel flex systemtap-sdt-devel readline-devel

cd /home/src/glusterfs-3.8.9

./configure --prefix=/home/rzrk/server/glusterfs

报错:

configure: error: libxml2 devel libraries not found

改不出来这个悲伤。。。

configure: error: pass --disable-tiering to build without sqlite

./configure --prefix=/home/rzrk/server/glusterfs --disable-tiering --这样编译吧

反正最后还是没编过 也没啥报错

查看内核文件是否挂载

# lsmod |grep fuse

fuse 95758 3

2.源码的编不过

zypper in glusterfs

zypper in glusterfs-devel

lsb_release -a 可以先看下操作系统

LSB Version: n/a

Distributor ID: SUSE LINUX

Description: SUSE Linux Enterprise Server 12 SP1

Release: 12.1

Codename: n/a

一 、 rpm安装

http://blog.csdn.net/zzulp/article/details/39527441#

---史上最牛逼文档哈哈哈哈按照这个做出来的

http://blog.csdn.net/liuaigui/article/details/6284551 ---原理在这里

lsb_release -a 可以先看下操作系统

LSB Version: n/a

Distributor ID: SUSE LINUX

Description: SUSE Linux Enterprise Server 12 SP1

Release: 12.1

Codename: n/a

1 这个是zypper源从官网下的

zypper ar http://download.opensuse.org/repositories/home:/kkeithleatredhat:/SLES12-3.8/SLE_12_SP2/ glusterfs

zypper refresh

zypper in glusterfs-3.8.10 libgfapi0-3.8.10 libgfchangelog0-3.8.10 libgfrpc0-3.8.10 libgfxdr0-3.8.10 libglusterfs0-3.8.10 glusterfs-3.8.10

上面的库都要装要不然会有问题 的。。。

项目要求:

集群 四个点 每两个点互备

加油呀芷晴xi~~

四台机器: 4 18做个集群

172.30.5.4

172.30.5.17

172.30.5.18

172.30.5.19

4-17互备

18-19互备 17,19客户端

2 启动服务

# service glusterd start

ps -ef |grep glusterd

root 78162 1 0 16:31 ? 00:00:00 /usr/sbin/glusterd -p /var/run/glusterd.pid --log-level INFO

# netstat -tunlp|grep gluster

tcp 0 0 0.0.0.0:24007 0.0.0.0:* LISTEN 78162/glusterd

罢了 我就是试试能不能启动

  1. #如果需要在系统启动时开启glusterd
  2. chkconfig glusterd on
  3. yum install glusterfs{,-server,-fuse,-geo-replication}   ---人家是这么安装的但是不是suse是centOS wget http://download.gluster.org/pub/gluster/glusterfs/LATEST/CentOS/gluster-epel.repo -O /etc/yum.repo.d/glusterfs.repo

3 4-17这两台服务器互备

glusterfs管理

  1. $gluster peer probe host|ip
  2. $gluster peer status         #查看除本机外的其他设备状态
  3. $gluster peer detach host|ip #如果希望将某设备从存储池中删除

在创建volume之前需要先将一组存储设备组成一个存储池,通过存储设备提供的bricks来组成卷。

在设备上启动glusterd之后,可通过设备的主机名或IP地址,将设备加到存储池中。

在4这台机器操作:

gluster peer probe 172.30.5.18

peer probe: failed: Probe returned with Transport endpoint is not connected

报错解决:5.18上gluster启动服务

# gluster peer probe s3

# gluster peer status

Number of Peers: 1

Hostname: s3

Uuid: 0e0230ea-74e3-48b4-a595-81be72a36309

State: Peer in Cluster (Connected)

# cat /etc/hosts

172.30.5.4 s1

172.30.5.17 s2

172.30.5.18 s3

172.30.5.19 s4

1)创建GlusterFS逻辑卷(Volume)

因为4 18是服务器只在一台服务器上操作就行

# gluster volume create gv0 replica 2 172.30.5.4:/data/gluster 172.30.5.18:/data/gluster

报错如下

volume create: gv0: failed: The brick 172.30.5.4:/data/gluster is being created in the root partition. It is recommended that you don‘t use the system‘s root partition for storage backend. Or use ‘force‘ at the end of the command if you want to override this behavior.

发现报错了,这是因为我们创建的brick在系统盘,这个在gluster的默认情况下是不允许的,生产环境下也尽可能的与系统盘分开,如果必须这样请使用force

# gluster volume create gv0 replica 2 172.30.5.4:/data/gluster 172.30.5.18:/data/gluster force

volume create: gv0: success: please start the volume to access data

启用GlusterFS逻辑卷:

# gluster volume start gv0

volume start: gv0: success

查看:

# gluster volume info

客户端挂载17挂载吧

# mkdir /gluster

# mount -t glusterfs 172.30.5.4:/gv0 /gluster

# df -h

172.30.5.4:/gv0 80G 4.1G 76G 6% /gluster

哦shit。。。 客户端跟我预想的不一样阿

在5.4上删除卷吧:

# gluster volume stop gv0

Stopping volume will make its data inaccessible. Do you want to continue? (y/n) y

volume stop: gv0: success

# gluster volume delete gv0

Deleting volume will erase all information about the volume. Do you want to continue? (y/n) y

volume delete: gv0: success

重新做一遍在5.4上

# gluster volume create gv0 replica 2 172.30.5.4:/home/gluster 172.30.5.18:/home/gluster force

volume create: gv0: success: please start the volume to access data

# gluster volume start gv0

volume start: gv0: success

# gluster volume info

Volume Name: gv0

Type: Replicate

Volume ID: e28cf751-38db-4081-a686-dc218959de97

Status: Started

Snapshot Count: 0

Number of Bricks: 1 x 2 = 2

Transport-type: tcp

Bricks:

Brick1: 172.30.5.4:/home/gluster

Brick2: 172.30.5.18:/home/gluster

Options Reconfigured:

transport.address-family: inet

performance.readdir-ahead: on

nfs.disable: on

-----------------------------------------------------------以上挂载完只有4.5T----------------------------------------

移除

然后把这四台机器都放到一个储存池里

# gluster volume create dr-volume repl 2 s1:/home/data_fluster s2:/home/data_fluster s3:/home/data_fluster s4:/home/data_fluster

volume create: dr-volume: success: please start the volume to access data

# gluster volume info

Volume Name: dr-volume

Type: Distributed-Replicate

Volume ID: 578babc5-bd40-45d7-867b-b21fd970be3f

Status: Started

Snapshot Count: 0

Number of Bricks: 2 x 2 = 4

Transport-type: tcp

Bricks:

Brick1: s1:/home/data_fluster

Brick2: s2:/home/data_fluster

Brick3: s3:/home/data_fluster

Brick4: s4:/home/data_fluster

Options Reconfigured:

transport.address-family: inet

performance.readdir-ahead: on

nfs.disable: on

route add default gw 172.30.5.1

四台客户端分别挂载:

4 mount -t glusterfs 172.30.5.4:/dr-volume /gluster/

17 mount -t glusterfs 172.30.5.4:/dr-volume /gluster_data

18 mount -t glusterfs 172.30.5.18:/dr-volume /gluster_data

19 mount -t glusterfs 172.30.5.18:/dr-volume /gluster_data

开机自启:chkconfig glusterd on

测试并发

http://blog.csdn.net/qiuhan0314/article/details/39672877

自动挂载:

# cat /etc/fstab

UUID=70af5fe1-a9b4-408e-9b81-6c34048e5a10 swap swap defaults 0 0

UUID=b560683d-0afb-45fe-a86a-359c6c0ae104 / xfs defaults 1 1

UUID=5715b418-7bcb-4a37-8b8c-901769a5b3be /home xfs defaults 1 2

172.30.5.4:/dr-volume /gluster/ glusterfs defaults,_netdev 0 0

时间: 2024-11-04 07:23:46

Suse12.1 - rpm部署GlusterFS分布式存储的相关文章

Glusterfs 分布式存储安装部署

Glusterfs 分布式存储部署 是存储当中可以选择的一种 现在很多虚拟化 云计算都在用软件存储 例如 ceph Glusterfs 等等 今天我们部署一下Glusterfs环境 GlusterFs安装 环境信息:          Glusterfs-A                           10.20.0.200                                        Glusterfs-B                   10.20.0.201  

GlusterFS分布式存储集群部署记录-相关补充

接着上一篇Centos7下GlusterFS分布式存储集群环境部署记录文档,继续做一些补充记录,希望能加深对GlusterFS存储操作的理解和熟悉度. ========================清理glusterfs存储环境========================= 由上面可知,该glusterfs存储集群有四个节点: [[email protected] ~]# cat /etc/hosts ....... 192.168.10.239 GlusterFS-master 192.

线上部署GlusterFS情况调研结果

还是有不少群友在选择GlusterFS版本时缺乏信心,所以在"GlusterFS技术交流"QQ群(234901333)里调研了一下线上部署GlusterFS情况. 先说明一下GlusterFS的应用场景: 纯基于GlusterFS创业也是可以成功的,著名的有大道行云,结合他们的描述,GlusterFS主要应该于广电.高性能计算.医疗.军工等行业,也会用在桌面虚拟化和超融合,很多互联网公司内部也在使用GlusterFS,用于公司内部的文件共享,或是兼容之前基于文件的应用,通过NAS转换,

GlusterFS 分布式存储的搭建和使用

GlusterFS 分布式存储的安装和使用 1. GlusterFS分布式存储系统简介:   GlusterFS is a scalable network filesystem suitable for data-intensive tasks such as cloud storage and media streaming. GlusterFS is free and open source software and can utilize common off-the-shelf har

elasticsearch5.* yum或者rpm部署 应该注意事项

1.yum 部署 rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch cd /etc/yum.repos.d/ vim elasticsearch.repo [elasticsearch-5.x] name=Elasticsearch repository for 5.x packages baseurl=https://artifacts.elastic.co/packages/5.x/yum gpgcheck=1 g

RPM部署MYSQL

RPM部署MYSQL在生产上基本上用tar包安装装,原因如下1.MYSQLRPM安装:一般是个人学习 测试 快速部署使用RPM包安装完是在四目录下的,万一这个目录空间不够了,问题严重,所以需要蒋这个目录挂载到空间大的盘下tar安装:是定制化  企业级 (公司生产安装基本上用这种) MYSQL部署步骤网址https://github.com/Hackeruncle/MySQL/blob/master/MySQL%205.6.23%20Install.txt RPM安装 在RPM安装时,首先使用 y

Suse12.1 - mysql5.7 mongodb rpm部署

http://dev.mysql.com/downloads/mysql/ http://blog.csdn.net/gaolu/article/details/52090174 http://haowen.blog.51cto.com/3486731/1274721 mysql: http://dev.mysql.com/downloads/repo/suse/   --下载网址 1.确认是否安装了MYSQL 旧版本或应用 # rpm -qa|grep mysql 2.卸载旧版本或应用 #rp

glusterFS分布式存储部署流程

转自:http://bangbangba.blog.51cto.com/3180873/1712061 GlusterFS是一款非常易于使用的分布式文件存储系统,实现了全部标准POSIX接口,并用fuse实现虚拟化,让用户看起来就像是本地磁盘一样.因此程序想从本地磁盘切换到GlusterFS时是不用修改任何代码的,做到了无缝切换.并且让多台电脑的程序看起来在使用同一块硬盘,简化了很多逻辑.如果您的应用单机磁盘不够放时,不妨考虑下GlusterFS. 一.    GlusterFS源码安装1. g

GlusterFS 分布式存储部署使用

GlusterFS是一款非常易于使用的分布式文件存储系统,实现了全部标准POSIX接口,并用fuse实现虚拟化,让用户看起来就像是本地磁盘一样.因此程序想从本地磁盘切换到GlusterFS时是不用修改任何代码的,做到了无缝切换.并且让多台电脑的程序看起来在使用同一块硬盘,简化了很多逻辑.如果您的应用单机磁盘不够放时,不妨考虑下GlusterFS. 一.    GlusterFS源码安装1. glusterfs 依赖安装 a. centos下yum安装 yum install -y flex bi