Page MenuHomeSoftware Heritage

Add new beaubourg SSDs as Ceph OSDs
Closed, MigratedEdits Locked

Description

Initialize the new SSDs and set them up as Ceph OSDs

Event Timeline

olasd triaged this task as High priority.
olasd created this task.

Find new disks in megacli

sudo megacli -PDList -aALL | less

Initialize new disks JBOD instead of RAID

for slot in 13 14 15 16; do sudo megacli -PDMakeJBOD -PhysDrv[32:$slot] -aALL ; done

Find drive letters for the new disks in kernel logs

journalctl -k --since '15 minutes ago'

Setup Ceph OSD

for letter in m n o p; do sudo pveceph osd create /dev/sd$letter; done