glusterfs升级集群

作者:吴业亮

博客:http://blog.csdn.net/wylfengyujiancheng

一、服务端升级

1、停止自愈

gluster volume set test-lv cluster.entry-self-heal off

2、停止服务

service glusterd stop
service glusterfsd stop

3、配置升级的yum源

yum install -y centos-release-gluster

4、升级操作

yum install -y glusterfs-server

5、启动服务

service glusterd start
service glusterfsd start

6、开启自愈

gluster volume set test-lv cluster.entry-self-heal on

7、确保进程在线状态

gluster volume status

二、客户端升级

1、配置升级的yum源

yum install -y centos-release-gluster

2、升级操作

yum install -y glusterfs-fuse
发布了235 篇原创文章 · 获赞 120 · 访问量 81万+

猜你喜欢

转载自blog.csdn.net/wylfengyujiancheng/article/details/98788662