그래서 여기에 큰 문제가 있습니다. 우리 서버에는 볼륨 그룹이 있는 LVM RAID가 있습니다 raid
. 여기에는 두 개의 볼륨 secured
과 unsecured
일부 할당되지 않은 공간이 포함되어 있습니다. 오늘은 unsecured
남은 여유공간을 모두 활용해서 삭제하고 다시 만들어 보았습니다. 다음 명령을 실행했습니다.
lvremove unsecured raid
lvcreate -l 100%FREE -n unsecured raid
그것은 말한다
logical volumes cannot contain more than 65534 extents.
logical extent (0) already mapped.
Couldn't fill logical volume maps.
logical extent (0) already mapped.
Couldn't fill logical volume maps.
logical extent (0) already mapped.
Couldn't fill logical volume maps.
logical extent (0) already mapped.
Couldn't fill logical volume maps.
Volume group for uuid not found: GC3toI0uhKos5KLH0OJ6uMFppc9pSSyl00000000000000000000000000000001
Failed to activate new LV.
lvdisplay
그 후에는 더 이상 등과 같은 lvm 명령을 사용할 수 없습니다 vgdisplay
. 항상 다음과 같이 말합니다.
# vgdisplay
logical extent (0) already mapped.
Couldn't fill logical volume maps.
logical extent (0) already mapped.
Couldn't fill logical volume maps.
Volume group "raid" not found
이제 secured
설치된 상태에서도 데이터에 액세스할 수 있습니다. 재부팅 후 데이터가 손실될까봐 걱정됩니다. 여기서 무슨 일이 일어나고 있는 걸까요? 내가 뭘 잘못하고 있는 걸까요? 어떻게든 해결할 수 있을까요?