Advertisement
Guest User

Untitled

a guest
Jul 10th, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. # CEPH OSD Journal Switch
  2. OSD=11
  3. systemctl stop ceph-osd@$OSD
  4. ceph-osd -i $OSD --flush-journal
  5. rm /var/lib/ceph/osd/ceph-$OSD/journal
  6. rm /var/lib/ceph/osd/ceph-$OSD/journal_uuid
  7. lvcreate -n osd$OSD-journal -L10G kingssd
  8. chown ceph:ceph /dev/kingssd/osd$OSD-journal
  9. ln -s /dev/kingssd/osd$OSD-journal /var/lib/ceph/osd/ceph-$OSD/journal
  10. ceph-osd -i $OSD --mkjournal
  11. systemctl start ceph-osd@$OSD
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement