硬件环境Centos6.5  glusterfs3.6.2

  1. 先安装必要的包

yum install flex bison

2. 下载glusterfs3.6.2

wget http://download.gluster.org/pub/gluster/glusterfs/LATEST/glusterfs-3.6.2.tar.gz

3. 安装

tar -zxvf glusterfs-3.6.2.tar.gz

cd glusterfs-3.6.2

./configure --prefix=/usr/local/glusterfs

make && make install (这一步执行时间长点)

4. 下面是执行./configure 过程中遇到的问题

checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/usr/local/glusterfs-3.3.2':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.

解决办法: yum install gcc

configure: error: OpenSSL crypto library is required to build glusterfs

解决办法: yum install openssl-devel

5.安装成功之后在/usr/local/目录下就会有一个glusterfs目录

cd /usr/local/glusterfs/sbin

./glusterfs --version

出现下面的信息就算成功了

glusterfs 3.6.2 built on Apr 1 2015 05:05:47
Repository revision: git://git.gluster.com/glusterfs.git
Copyright (c) 2006-2013 Red Hat, Inc. <http://www.redhat.com/>
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.

6. 启动glusterfs

/etc/init.d/glusterd start
Starting glusterd:[ OK ]

或者

service glusterd start
Starting glusterd:[ OK ]

7. 查看glusterfs进程

ps -ef | grep glusterfs
root 25395 1 0 05:28 ? 00:00:00 /usr/local/glusterfs/sbin/glusterd --pid-file=/var/run/glusterd.pid
root 25581 2103 0 05:36 pts/1 00:00:00 grep glusterfs

最新文章

  1. poj 1276
  2. 使用WordPress模板搭建博客系统
  3. 『摄影欣赏』16幅 Romantic 风格照片欣赏【组图】
  4. 利用Axis2默认口令安全漏洞可入侵WebService网站
  5. Oracle数据库——数据库安全性管理
  6. BZOJ 1452: [JSOI2009]Count 二维树状数组
  7. MSP430主系统时钟以及430的低功耗设置
  8. C#中有关字符串去重的解决方案
  9. 充电-ios(未完更新中...
  10. Codeforces Round #550 (Div. 3) F. Graph Without Long Directed Paths
  11. 使用MockMvc测试controller
  12. git知识整理
  13. vue和jQuery嵌套实现异步ajax通信
  14. 535种使用JavaScript重新加载页面的方法
  15. Latex 模版生成会议论文 不显示Keywords,而是显示 Index Terms- ,改成Keywords 方法
  16. MYSQL与MSSQL对比学习
  17. list(range())--------range创建一个list列表 遍历索引range(len()) 和 list(range())创建列表
  18. 面向对象程序设计_tesk1_寒假伊始
  19. Round 1 Over
  20. 三个实例演示 Java Thread Dump 日志分析(转)

热门文章

  1. Win7 sql2005附加数据库失败 错误5120
  2. [Spring Data MongoDB]学习笔记--MongoTemplate插入修改操作
  3. using 关键字的使用
  4. eval()和exec()函数的区别
  5. 记录--java 分页 思路 (hibernate关键代码)
  6. Mybatis Insert 返回主键ID
  7. Solr 查询时候关键期 编码问题
  8. Selenium IDE的使用
  9. JavaScript-onerror事件:图片加载失败后不显示
  10. C语言预处理命令的使用