I have added disks to the cluster nodes through the "iscsid target" server. Those disks are visible with "lsblk". ( /dev/sdb) . But when you want to create "vg" and "lv" on the disks, it is not possible.
What form should this process take on 'node' - 1 if "vg" and "lv" are created, should I do this on the second "node"?
1 Answer 1
You need first to "prepare" this disk for LVM:
pvcreate /dev/sdb
and then add to VG
vgcreate clustervg /dev/sdb
answered Oct 14, 2023 at 9:33
Romeo Ninov
7,3891 gold badge29 silver badges36 bronze badges
Sign up to request clarification or add additional context in comments.