GlusterFS的升级总结与实践

1 环境配置

请确保你的是GlusterFS 3.7版本,其他版本请参阅官方文档,详细如下:

http://cmdschool.blog.51cto.com/2420395/1828450

2 服务器端升级

2.1 停止自愈

1
gluster  v  set  gv0 cluster.entry-self-heal off

2.2 停止服务

1
2
/etc/init .d /glusterd  stop
/etc/init .d /glusterfsd  stop

2.3 升级新的版本

2.3.1 配置升级的yum源

1
yum  install  -y centos-release-gluster

2.3.2 升级操作

1
yum  install  -y glusterfs-server

2.4 启动服务

1
2
/etc/init .d /glusterd  start
/etc/init .d /glusterfsd  start

2.5 开启自愈

1
gluster  v  set  gv0 cluster.entry-self-heal on

2.6 确保进程在线状态

1
gluster volume status

3 客户端升级

3.1 配置升级的yum源

1
yum  install  -y centos-release-gluster

3.2 升级操作

1
yum  install  -y glusterfs-fuse

==========================================










本文转自 tanzhenchao 51CTO博客,原文链接:http://blog.51cto.com/cmdschool/1866669,如需转载请自行联系原作者

你可能感兴趣的:(GlusterFS的升级总结与实践)