从glusterfs 3.3开始,有个变化:gluster 会一直check 目录是否已经是volume的一部分,如果你将brick从volume移除后再次使用时,会导致许多问题,甚至是数据丢失。
目的是重用原来的brick时,需要让你知道你在做什么
需要重用原来brick时,执行如下操作
setfattr -x trusted.glusterfs.volume-id $brick_path
setfattr -x trusted.gfid $brick_path
rm -rf $brick_path/.glusterfs
重启glusterd 服务即可或run script :
- #! /bin/sh
- read -p "Enter you will reuse brick path:" brick_path
- setfattr -x trusted.glusterfs.volume-id $brick_path
- setfattr -x trusted.gfid $brick_path
- rm -rf $brick_path/.glusterfs
- service glusterd restart
阅读(2994) | 评论(0) | 转发(1) |