728x90
반응형
Symptoms..
ceph -s 로 확인하면.
root@mon0:~# ceph -s
cluster:
id: [fsid]
health: HEALTH_WARN
1 pgs not deep-scrubbed in time
여기서 좀 더 자세하게 확인하기 위해 ceph health detail 로 확인하면 아래와 같이 어떤 pg_id인지 확인 할 수 있다.
root@mon0:~# ceph health detail
HEALTH_WARN 1 pgs not deep-scrubbed in time
[WRN] PG_NOT_DEEP_SCRUBBED: 1 pgs not deep-scrubbed in time
pg [pg_id] not deep-scrubbed since [date]
반응형
Touble_shooting..
위에서 확인한 pg_id를 deep-scrub 한다.
root@mon0:~# ceph pg deep-scrub [pg_id]
instructing pg [pg_id] on osd.[osd_id] to deep-scrub
* 해당 pg가 있는 osd에서 deep-scrub을 하도록 하는 명령어
728x90
Verifying..
다시 한번 ceph -s 로 확인.
root@mon0:~# ceph -s
cluster:
id: [fsid]
health: HEALTH_OK
728x90
반응형
'Ceph' 카테고리의 다른 글
[Ceph] remove OSD/OSD-node 제거 (0) | 2025.03.27 |
---|---|
[Ceph] rbd: error: image still has watchers (0) | 2025.01.03 |
[Ceph] daemons have recently crashed (0) | 2024.11.24 |
[Ceph] failed cephadm daemon(s) out of quorum (0) | 2024.11.22 |
[Ceph] CEPHADM_HOST_CHECK_FAILED: 4 hosts fail cephadm check (1) | 2024.09.25 |