Display a list of messages:
ceph crash ls
read a message:
ceph crash info <id>
mark message as read
ceph crash archive <id>
or mark all as read
ceph crash archive-all
Welcome to my world
Display a list of messages:
ceph crash ls
read a message:
ceph crash info <id>
mark message as read
ceph crash archive <id>
or mark all as read
ceph crash archive-all
When you don’t scrub your ceph pool it will scrub itself when you don’t want it to scrub: during working hours. To avoid that you can set the time in the night when scrubbing is allowed
the ceph config set is global for the cluster / all nodes.
root@pve-01:/etc/ceph# ceph config get osd osd_scrub_begin_hour 0 root@pve-01:/etc/ceph# ceph config set osd osd_scrub_begin_hour 22 root@pve-01:/etc/ceph# ceph config get osd osd_scrub_begin_hour 22 root@pve-01:/etc/ceph# ceph config get osd osd_scrub_end_hour 0 root@pve-01:/etc/ceph# ceph config set osd osd_scrub_end_hour 7 root@pve-01:/etc/ceph# ceph config get osd osd_scrub_end_hour 7 root@pve-01:/etc/ceph#
The error message on the proxmox gui
() Job for ceph-mgr@pve-03.service failed. See "systemctl status ceph-mgr@pve-03.service" and "journalctl -xe" for details. TASK ERROR: command '/bin/systemctl start ceph-mgr@pve-03' failed: exit code 1
The error message from systemctl
ceph-mgr@pve-03.service: Start request repeated too quickly. ceph-mgr@pve-03.service: Failed with result 'start-limit-hit'.
Solve with
systemctl reset-failed ceph-mgr@pve-03 systemctl start ceph-mgr@pve-03
change pve-03 to your node name.