1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【2024年10月版】ProxmoxのCephのWARNをリセットするメモ【Proxmox, Ceph】

Posted at

はじめに

Proxmoxで構築しているクラスタ上のCephがWARNだしてる。。。

# ceph -s
  cluster:
    id:     ********-f929-433a-8eb4-68c817d7f51f
    health: HEALTH_WARN
            1 mgr modules have recently crashed

該当のノード(pve4)でリセットしよ

# systemctl restart ceph-mgr@$(hostname -s)

あれ、WARNきえない。。。

# ceph -s
  cluster:
    id:     ********-f929-433a-8eb4-68c817d7f51f
    health: HEALTH_WARN
            1 mgr modules have recently crashed

となったときのメモ

作業

状況を確認する

# ceph -s
  cluster:
    id:     ********-f929-433a-8eb4-68c817d7f51f
    health: HEALTH_WARN
            1 mgr modules have recently crashed

クラッシュリストの表示

# ceph crash ls
ID                                                                ENTITY    NEW  
2024-10-01T04:14:05.218890Z_69989027-cbe2-4139-8230-************  mgr.pve4   *   

クラッシュリストから削除

# ceph crash rm 2024-10-01T04:14:05.218890Z_69989027-cbe2-4139-8230-************

削除を確認

# ceph crash ls
#

削除後の状況を再確認

# ceph -s
  cluster:
    id:     ********-f929-433a-8eb4-68c817d7f51f
    health: HEALTH_OK

さいごに

かんたんでしたね

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?