gluster故障硬盤更換

故障問題:

本機(jī)處理:

[root@node2 ~]# gluster volume status

Status of volume: testvol

Gluster process? ? ? ? ? ? ? ? ? ? ? ? ? ? TCP Port? RDMA Port? Online? Pid

------------------------------------------------------------------------------

Brick node1:/export/sdb1/brick? ? ? ? ? ? ? 49152? ? 0? ? ? ? ? Y? ? ? 2684

Brick node2:/export/sdb1/brick? ? ? ? ? ? ? N/A? ? ? N/A? ? ? ? N? ? ? N/A? ? # sdb顯示不在線

Brick node1:/export/sdc1/brick? ? ? ? ? ? ? 49153? ? 0? ? ? ? ? Y? ? ? 2703

Brick node2:/export/sdc1/brick? ? ? ? ? ? ? 49153? ? 0? ? ? ? ? Y? ? ? 2704

Brick node3:/export/sdb1/brick? ? ? ? ? ? ? 49152? ? 0? ? ? ? ? Y? ? ? 2197

Brick node4:/export/sdb1/brick? ? ? ? ? ? ? 49152? ? 0? ? ? ? ? Y? ? ? 2207

Brick node3:/export/sdc1/brick? ? ? ? ? ? ? 49153? ? 0? ? ? ? ? Y? ? ? 2216

Brick node4:/export/sdc1/brick? ? ? ? ? ? ? 49153? ? 0? ? ? ? ? Y? ? ? 2226

Self-heal Daemon on localhost? ? ? ? ? ? ? N/A? ? ? N/A? ? ? ? Y? ? ? 1393

Self-heal Daemon on node1? ? ? ? ? ? ? ? ? N/A? ? ? N/A? ? ? ? Y? ? ? 3090

Self-heal Daemon on node4? ? ? ? ? ? ? ? ? N/A? ? ? N/A? ? ? ? Y? ? ? 2246

Self-heal Daemon on node3? ? ? ? ? ? ? ? ? N/A? ? ? N/A? ? ? ? Y? ? ? 2236

Task Status of Volume testvol

------------------------------------------------------------------------------

Task? ? ? ? ? ? ? ? : Rebalance

ID? ? ? ? ? ? ? ? ? : 8b3a04a0-0449-4424-a458-29f602571ea2

Status? ? ? ? ? ? ? : completed

從上方看到 Brick node2:/export/sdb1/brick 不在線您单,出現(xiàn)了問題

解決:

1.創(chuàng)建新的數(shù)據(jù)目錄叽唱,將備用的硬盤格式化襟衰,掛載到系統(tǒng)中去(故障主機(jī)上執(zhí)行)

mkfs.xfs -i size=512 /dev/sdd1? #格式化

mkdir /export/sdd1/brick -p? #建立相關(guān)的目錄

mount /dev/sdd1 /export/sdd1 #掛載

echo "/dev/sdd1 /export/sdd1 xfs defaults 0 0"? >> /etc/fstab #加入開機(jī)啟動

2. 查詢故障點(diǎn)的目錄的擴(kuò)展屬性(正常主機(jī)執(zhí)行)

3. 掛載卷并觸發(fā)自愈(故障主機(jī)執(zhí)行)

[root@node2 ~]# mount -t glusterfs node2:/testvol /mnt? #掛載點(diǎn)隨便,不重復(fù)就可以劫瞳,node2:/testvol為之前生成的卷

[root@node2 ~]# mkdir /mnt/test #新建一個卷中不存在的目錄并刪除,根據(jù)你的掛載點(diǎn)的位置變換執(zhí)行

[root@node2 ~]# rmdir /mnt/test

[root@node2 ~]# setfattr -n trusted.non-existent-key -v abc /mnt? # 設(shè)置擴(kuò)展屬性觸發(fā)自愈

[root@node2 ~]# setfattr -x trusted.non-existent-key /mnt # 設(shè)置擴(kuò)展屬性觸發(fā)自愈

4.檢查當(dāng)前節(jié)點(diǎn)是否掛起

正常的主機(jī)執(zhí)行

[root@node1 gluster]# getfattr -d -m. -e hex /export/sdb1/brick/? # /export/sdb1/brick/ 你建立brick的位置

getfattr: Removing leading '/' from absolute path names

# file: export/sdb1/brick/

security.selinux=0x73797374656d5f753a6f626a6563745f723a756e6c6162656c65645f743a733000

trusted.afr.dirty=0x000000000000000000000000

trusted.afr.testvol-client-1=0x000000000000000400000004? <<---- xattrs are marked from source brick node1:/export/sdb1/brick--->>

trusted.gfid=0x00000000000000000000000000000001

trusted.glusterfs.dht=0x0000000100000000000000003ffffffe

trusted.glusterfs.dht.commithash=0x3334343336363233303800

trusted.glusterfs.volume-id=0xe107222fa1134606a9a7fcb16e4c0709

故障主機(jī)執(zhí)行(正常是否可以):

[root@node2 gluster]# gluster volume heal testvol info

Brick node1:/export/sdb1/brick

/

Status: Connected

Number of entries: 1

Brick node2:/export/sdb1/brick

Status: Transport endpoint is not connected

Number of entries: -? ? # 狀態(tài)顯示傳輸端點(diǎn)未連接

Brick node1:/export/sdc1/brick

Status: Connected

Number of entries: 0

Brick node2:/export/sdc1/brick

Status: Connected

Number of entries: 0

Brick node3:/export/sdb1/brick

Status: Connected

Number of entries: 0

Brick node4:/export/sdb1/brick

Status: Connected

Number of entries: 0

Brick node3:/export/sdc1/brick

Status: Connected

Number of entries: 0

Brick node4:/export/sdc1/brick

Status: Connected

Number of entries: 0

5. 使用強(qiáng)制提交完成操作

故障機(jī)執(zhí)行

[root@node2 ~]# gluster volume replace-brick testvol node2:/export/sdb1/brick node2:/export/sdd1/brick commit force

volume replace-brick: success: replace-brick commit force operation successful? # 提示成功

[root@node2 ~]# gluster volume status

Status of volume: testvol

Gluster process? ? ? ? ? ? ? ? ? ? ? ? ? ? TCP Port? RDMA Port? Online? Pid

------------------------------------------------------------------------------

Brick node1:/export/sdb1/brick? ? ? ? ? ? ? 49152? ? 0? ? ? ? ? Y? ? ? 2684

Brick node2:/export/sdd1/brick? ? ? ? ? ? ? 49154? ? 0? ? ? ? ? Y? ? ? 10298? #在線盤已經(jīng)是sdd

Brick node1:/export/sdc1/brick? ? ? ? ? ? ? 49153? ? 0? ? ? ? ? Y? ? ? 2703

Brick node2:/export/sdc1/brick? ? ? ? ? ? ? 49153? ? 0? ? ? ? ? Y? ? ? 2704

Brick node3:/export/sdb1/brick? ? ? ? ? ? ? 49152? ? 0? ? ? ? ? Y? ? ? 2197

Brick node4:/export/sdb1/brick? ? ? ? ? ? ? 49152? ? 0? ? ? ? ? Y? ? ? 2207

Brick node3:/export/sdc1/brick? ? ? ? ? ? ? 49153? ? 0? ? ? ? ? Y? ? ? 2216

Brick node4:/export/sdc1/brick? ? ? ? ? ? ? 49153? ? 0? ? ? ? ? Y? ? ? 2226

Self-heal Daemon on localhost? ? ? ? ? ? ? N/A? ? ? N/A? ? ? ? Y? ? ? 10307

Self-heal Daemon on node3? ? ? ? ? ? ? ? ? N/A? ? ? N/A? ? ? ? Y? ? ? 9728

Self-heal Daemon on node1? ? ? ? ? ? ? ? ? N/A? ? ? N/A? ? ? ? Y? ? ? 3284

Self-heal Daemon on node4? ? ? ? ? ? ? ? ? N/A? ? ? N/A? ? ? ? Y? ? ? 9736

Task Status of Volume testvol

------------------------------------------------------------------------------

Task? ? ? ? ? ? ? ? : Rebalance

ID? ? ? ? ? ? ? ? ? : 8b3a04a0-0449-4424-a458-29f602571ea2

Status? ? ? ? ? ? ? : not started

正常主機(jī)執(zhí)行

[root@node1 gluster]# getfattr -d -m. -e hex /export/sdb1/brick/

getfattr: Removing leading '/' from absolute path names

# file: export/sdb1/brick/

security.selinux=0x73797374656d5f753a6f626a6563745f723a756e6c6162656c65645f743a733000

trusted.afr.dirty=0x000000000000000000000000

trusted.afr.testvol-client-1=0x000000000000000000000000? <<---- Pending changelogs are cleared.

trusted.gfid=0x00000000000000000000000000000001

trusted.glusterfs.dht=0x0000000100000000000000003ffffffe

trusted.glusterfs.dht.commithash=0x3334343336363233303800

trusted.glusterfs.volume-id=0xe107222fa1134606a9a7fcb16e4c0709

[root@node2 ~]# gluster volume heal testvol info

Brick node1:/export/sdb1/brick

Status: Connected

Number of entries: 0

Brick node2:/export/sdd1/brick

Status: Connected

Number of entries: 0

Brick node1:/export/sdc1/brick

Status: Connected

Number of entries: 0

Brick node2:/export/sdc1/brick

Status: Connected

Number of entries: 0

Brick node3:/export/sdb1/brick

Status: Connected

Number of entries: 0

Brick node4:/export/sdb1/brick

Status: Connected

Number of entries: 0

Brick node3:/export/sdc1/brick

Status: Connected

Number of entries: 0

Brick node4:/export/sdc1/brick

Status: Connected

Number of entries: 0

方法二:跨主機(jī)的同步

假設(shè)node2 的sdb1有問題

加入新主機(jī)node5篡帕,node5磁盤格式化耗拓,掛載和gluster的安裝過程同上:

將node5加入信任池

[root@node1 brick]# gluster peer probe node5

peer probe: success.

掛載磁盤

[root@node5 ~]# mkdir -p /export/sdb1 && mount /dev/sdb1 /export/sdb1

[root@node5 ~]# echo "/dev/sdb1 /export/sdb1 xfs defaults 0 0"? >> /etc/fstab

[root@node5 ~]#? mount -a && mount

執(zhí)行下邊的命令:

[root@node5 ~]# gluster volume replace-brick testvol node2:/export/sdb1/brick node5:/export/sdb1/brick? commit force

volume replace-brick: success: replace-brick commit force operation successful

頂替的可以繼續(xù)使用,也可以在sdb1恢復(fù)后彰檬,數(shù)據(jù)倒回伸刃,命令如下

[root@node2 ~]# gluster volume replace-brick testvol node5:/export/sdb1/brick? node2:/export/sdb1/brick commit force

volume replace-brick: success: replace-brick commit force operation successful

替換之前的狀態(tài):

[root@node1 brick]# gluster volume status

Status of volume: testvol

Gluster process? ? ? ? ? ? ? ? ? ? ? ? ? ? TCP Port? RDMA Port? Online? Pid

------------------------------------------------------------------------------

Brick node1:/export/sdb1/brick? ? ? ? ? ? ? 49152? ? 0? ? ? ? ? Y? ? ? 2085

Brick node5:/export/sdb1/brick? ? ? ? ? ? ? 49152? ? 0? ? ? ? ? Y? ? ? 18229

Brick node1:/export/sdc1/brick? ? ? ? ? ? ? 49153? ? 0? ? ? ? ? Y? ? ? 2076

Brick node2:/export/sdc1/brick? ? ? ? ? ? ? 49153? ? 0? ? ? ? ? Y? ? ? 2131

Brick node3:/export/sdb1/brick? ? ? ? ? ? ? 49152? ? 0? ? ? ? ? Y? ? ? 2197

Brick node4:/export/sdb1/brick? ? ? ? ? ? ? 49152? ? 0? ? ? ? ? Y? ? ? 2207

Brick node3:/export/sdc1/brick? ? ? ? ? ? ? 49153? ? 0? ? ? ? ? Y? ? ? 2216

Brick node4:/export/sdc1/brick? ? ? ? ? ? ? 49153? ? 0? ? ? ? ? Y? ? ? 2226

Self-heal Daemon on localhost? ? ? ? ? ? ? N/A? ? ? N/A? ? ? ? Y? ? ? 10565

Self-heal Daemon on node2? ? ? ? ? ? ? ? ? N/A? ? ? N/A? ? ? ? Y? ? ? 2265

Self-heal Daemon on node3? ? ? ? ? ? ? ? ? N/A? ? ? N/A? ? ? ? Y? ? ? 10416

Self-heal Daemon on node4? ? ? ? ? ? ? ? ? N/A? ? ? N/A? ? ? ? Y? ? ? 10400

Self-heal Daemon on node5? ? ? ? ? ? ? ? ? N/A? ? ? N/A? ? ? ? Y? ? ? 18238

Task Status of Volume testvol

------------------------------------------------------------------------------

Task? ? ? ? ? ? ? ? : Rebalance

ID? ? ? ? ? ? ? ? ? : 8b3a04a0-0449-4424-a458-29f602571ea2

Status? ? ? ? ? ? ? : not started

替換之后的狀態(tài):

[root@node1 gluster]# gluster volume status

Status of volume: testvol

Gluster process? ? ? ? ? ? ? ? ? ? ? ? ? ? TCP Port? RDMA Port? Online? Pid

------------------------------------------------------------------------------

Brick node1:/export/sdb1/brick? ? ? ? ? ? ? 49152? ? 0? ? ? ? ? Y? ? ? 2085

Brick node2:/export/sdb1/brick? (過來了)? ? ? ? ? 49153? ? 0? ? ? ? ? Y? ? ? 10208

Brick node1:/export/sdc1/brick? ? ? ? ? ? ? 49153? ? 0? ? ? ? ? Y? ? ? 2076

Brick node2:/export/sdc1/brick? ? ? ? ? ? ? 49152? ? 0? ? ? ? ? Y? ? ? 3474

Brick node3:/export/sdb1/brick? ? ? ? ? ? ? 49152? ? 0? ? ? ? ? Y? ? ? 2197

Brick node4:/export/sdb1/brick? ? ? ? ? ? ? 49152? ? 0? ? ? ? ? Y? ? ? 2207

Brick node3:/export/sdc1/brick? ? ? ? ? ? ? 49153? ? 0? ? ? ? ? Y? ? ? 2216

Brick node4:/export/sdc1/brick? ? ? ? ? ? ? 49153? ? 0? ? ? ? ? Y? ? ? 2226

Self-heal Daemon on localhost? ? ? ? ? ? ? N/A? ? ? N/A? ? ? ? Y? ? ? 10684

Self-heal Daemon on node3? ? ? ? ? ? ? ? ? N/A? ? ? N/A? ? ? ? Y? ? ? 10498

Self-heal Daemon on node5? ? ? ? ? ? ? ? ? N/A? ? ? N/A? ? ? ? Y? ? ? 10075

Self-heal Daemon on node4? ? ? ? ? ? ? ? ? N/A? ? ? N/A? ? ? ? Y? ? ? 10488

Self-heal Daemon on node2? ? ? ? ? ? ? ? ? N/A? ? ? N/A? ? ? ? Y? ? ? 10201

Task Status of Volume testvol

------------------------------------------------------------------------------

Task? ? ? ? ? ? ? ? : Rebalance

ID? ? ? ? ? ? ? ? ? : 8b3a04a0-0449-4424-a458-29f602571ea2

Status? ? ? ? ? ? ? : not started

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市逢倍,隨后出現(xiàn)的幾起案子捧颅,更是在濱河造成了極大的恐慌,老刑警劉巖较雕,帶你破解...
    沈念sama閱讀 211,561評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件碉哑,死亡現(xiàn)場離奇詭異,居然都是意外死亡亮蒋,警方通過查閱死者的電腦和手機(jī)扣典,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,218評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來慎玖,“玉大人贮尖,你說我怎么就攤上這事∑嗬簦” “怎么了远舅?”我有些...
    開封第一講書人閱讀 157,162評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長痕钢。 經(jīng)常有香客問我图柏,道長,這世上最難降的妖魔是什么任连? 我笑而不...
    開封第一講書人閱讀 56,470評論 1 283
  • 正文 為了忘掉前任蚤吹,我火速辦了婚禮,結(jié)果婚禮上随抠,老公的妹妹穿的比我還像新娘裁着。我一直安慰自己,他們只是感情好拱她,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,550評論 6 385
  • 文/花漫 我一把揭開白布二驰。 她就那樣靜靜地躺著,像睡著了一般秉沼。 火紅的嫁衣襯著肌膚如雪桶雀。 梳的紋絲不亂的頭發(fā)上矿酵,一...
    開封第一講書人閱讀 49,806評論 1 290
  • 那天,我揣著相機(jī)與錄音矗积,去河邊找鬼全肮。 笑死,一個胖子當(dāng)著我的面吹牛棘捣,可吹牛的內(nèi)容都是我干的辜腺。 我是一名探鬼主播,決...
    沈念sama閱讀 38,951評論 3 407
  • 文/蒼蘭香墨 我猛地睜開眼乍恐,長吁一口氣:“原來是場噩夢啊……” “哼评疗!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起茵烈,我...
    開封第一講書人閱讀 37,712評論 0 266
  • 序言:老撾萬榮一對情侶失蹤壤巷,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后瞧毙,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體胧华,經(jīng)...
    沈念sama閱讀 44,166評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,510評論 2 327
  • 正文 我和宋清朗相戀三年宙彪,在試婚紗的時候發(fā)現(xiàn)自己被綠了矩动。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,643評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡释漆,死狀恐怖悲没,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情男图,我是刑警寧澤示姿,帶...
    沈念sama閱讀 34,306評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站逊笆,受9級特大地震影響栈戳,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜难裆,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,930評論 3 313
  • 文/蒙蒙 一子檀、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧乃戈,春花似錦褂痰、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,745評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至谍憔,卻和暖如春匪蝙,著一層夾襖步出監(jiān)牢的瞬間苟翻,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,983評論 1 266
  • 我被黑心中介騙來泰國打工骗污, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人沈条。 一個月前我還...
    沈念sama閱讀 46,351評論 2 360
  • 正文 我出身青樓需忿,卻偏偏與公主長得像,于是被迫代替她去往敵國和親蜡歹。 傳聞我的和親對象是個殘疾皇子屋厘,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,509評論 2 348

推薦閱讀更多精彩內(nèi)容