Talk:CEPH: Difference between revisions
(Created page with "Using Ceph19 packages no OSD came up. This command made the OSD come up (failed OSD needed to be restarted): <pre> vgchange -ay && ceph-volume lvm activate --all --no-systemd </pre> Modification to init.d service: <pre> sed -i '/vgchange --sysinit --activate y$/a\ \t\tceph-volume lvm activate --all --no-systemd' /etc/init.d/lvm rc-update add lvm boot </pre>") |
No edit summary |
||
| Line 13: | Line 13: | ||
rc-update add lvm boot | rc-update add lvm boot | ||
</pre> | </pre> | ||
Missing LVM at boot I think is due to me installing Alpine with btrfs (In the setup process doing 'apk add btrfs-progs && export ROOTFS=btrfs). | |||
Latest revision as of 13:28, 10 May 2026
Using Ceph19 packages no OSD came up.
This command made the OSD come up (failed OSD needed to be restarted):
vgchange -ay && ceph-volume lvm activate --all --no-systemd
Modification to init.d service:
sed -i '/vgchange --sysinit --activate y$/a\ \t\tceph-volume lvm activate --all --no-systemd' /etc/init.d/lvm rc-update add lvm boot
Missing LVM at boot I think is due to me installing Alpine with btrfs (In the setup process doing 'apk add btrfs-progs && export ROOTFS=btrfs).