LVM은 Logical Volume Manager의 약자이다.
꽤 오래전부터 기본으로 사용은 했는데 싫어서 매번 삭제하고 임의로 ext3나 ext4로 써왔는데
서버 밀면서 처음 써보다 보니 헤매고 있다.. -_ㅠ
아무튼 정리하자면
PV(Physical Volume)
VG(Volume Group)
LV(Logical Volume)
앞의 세개가 접두이고, 그 이후에 명령어들이 존재한다.
pvchange pvck pvcreate pvdisplay pvmove pvremove pvresize pvs pvscan |
lvchange lvcreate lvextend lvmconf lvmdiskscan lvmetad lvmsadc lvreduce lvrename lvs lvconvert lvdisplay lvm lvmconfig lvmdump lvmpolld lvmsar lvremove lvresize lvscan |
vgcfgbackup vgck vgdisplay vgimport vgmknodes vgrename vgsplit vgcfgrestore vgconvert vgexport vgimportclone vgreduce vgs vgchange vgcreate vgextend vgmerge vgremove vgscan |
PV는 /dev/sd? 에 매핑되는 녀석으로 물리적 하드에 대한 관리를 하게되고 VG는 PV를 기반으로 생성하게 된다.
기존의 Volume Group에 추가하려면 vgextend
새로운 Volume Group으로 Physical Volume을 추가하려면 vgcreate로 하면 된다.
Use vgcreate(8) to create a new VG on the PV, or vgextend(8) to add the PV to existing VG. |
그리고 PV를 VG로 묶을때 설정에 따라 RAID 처럼 묶을수도 있고 JBOD으로 묶을수도 있다.
생성 순서로 보면
# pvcreate /dev/sd??
# vgcreate vgname /dev/sd??
# lvcreate -L 용량 vgname -n lvname
Centos7 기준
/dev/mapper/centos-[lvname]
/dev/centos/lvname
/dev/dm-0
/dev/dm-1
식으로 되어있는데
/dev/dm-? 이 실제 장치이고
그 외에는 전부 심볼릭링크로 /dev/dm-? 으로 연결되어 있다.
[링크 : https://jangpd007.tistory.com/235]
[링크 : https://sgbit.tistory.com/13]
[링크 : https://support.hpe.com/hpsc/doc/public/display?docId=emr_na-c01847647]
[링크 : https://closed0402.tistory.com/103]
[링크 : https://support.hpe.com/hpsc/doc/public/display?docId=emr_na-c01847647]
+
selinux가 또 태클을 거는데..
mount: /home/test does not contain SELinux labels. You just mounted an file system that supports labels which does not contain labels, onto an SELinux box. It is likely that confined applications will generate AVC messages and not be allowed access to this file system. For more details see restorecon(8) and mount(8). |
이것만 해서는 안되고.. 서버 리부팅 까지 해주니 마운트가 되네.. 머냐...
# restorecon -Rv /raid1 # fixfiles relabel |
'프로그램 사용 > LVM' 카테고리의 다른 글
lvm as ssd cache (0) | 2022.02.14 |
---|---|
애증의.. LVM? centos 기본값 설치에서 변형했더니... (0) | 2019.03.05 |
lvm raid (0) | 2019.01.15 |
LVM - Logical Volumegroup Management (0) | 2009.01.22 |