Goal:
Create 4 drive RAID10 over LVM and add that storage to Proxmox.
Problem:
When I add raid10 lvm storage, Proxmox gui shows %100 full on the storage && shows ~4T of space instead of respecting raid10 mirrors and show ~2T of space. Creating a mount point and mounting to a folder on root works.
This does not work - it shows 100% full:
Steps taken below;
Now add that LVM as storage on Proxmox Gui;
This works:
Steps taken below;
Now add that folder as storage on Proxmox Gui;
I would like to use LVM storage added directly instead of using a folder and mount point. Also please notice that ~4T is being shown on LVM storage added. It should be ~2T after Raid10. What could be the issue?
Create 4 drive RAID10 over LVM and add that storage to Proxmox.
Problem:
When I add raid10 lvm storage, Proxmox gui shows %100 full on the storage && shows ~4T of space instead of respecting raid10 mirrors and show ~2T of space. Creating a mount point and mounting to a folder on root works.
This does not work - it shows 100% full:
Steps taken below;
Code:
pvcreate /dev/nvme0n1 /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1
vgcreate my_vol_grp /dev/nvme0n1 /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1
lvcreate --type raid10 -m 1 -i 2 -l 100%FREE -n lvm_raid10 my_vol_grp
This works:
Steps taken below;
Code:
pvcreate /dev/nvme0n1 /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1
vgcreate my_vol_grp /dev/nvme0n1 /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1
lvcreate --type raid10 -m 1 -i 2 -l 100%FREE -n lvm_raid10 my_vol_grp
mkfs.ext4 /dev/my_vol_grp/lvm_raid10
mkdir /mnt/lvm_raid10_mount/
mount /dev/my_vol_grp/lvm_raid10 /mnt/lvm_raid10_mount/
I would like to use LVM storage added directly instead of using a folder and mount point. Also please notice that ~4T is being shown on LVM storage added. It should be ~2T after Raid10. What could be the issue?