본문 바로가기
728x90
반응형
SMALL

오픈스택7

오픈스택 클라우드 서버 구축(Stein)(13)-Block Storage(Cinder) 설정(Multi) #Storage Node 설정 1) Configure Storage Node. 더보기 [root@storage ~]# yum -y install nfs-utils [root@storage ~]# vi /etc/idmapd.conf # 5번 줄 수정 Domain = srv.world [root@storage ~]# vi /etc/cinder/cinder.conf # add follows in the [DEFAULT] section enabled_backends = lvm,nfs # 마지막 줄 추가 [lvm] target_helper = lioadm target_protocol = iscsi # IP address of Storage Node target_ip_address = 10.0.0.50 volume.. 2023. 2. 2.
오픈스택 클라우드 서버 구축(Stein)(12)-Block Storage(Cinder) 설정(NFS) #Storage Node 설정 1) Configure Storage Node. 더보기 [root@storage ~]# yum -y install nfs-utils [root@storage ~]# vi /etc/idmapd.conf # line 5: uncomment and change to the own domain name Domain = srv.world [root@storage ~]# systemctl start rpcbind [root@storage ~]# systemctl enable rpcbind [root@storage ~]# vi /etc/cinder/cinder.conf # add follows in the [DEFAULT] section enabled_backends = nfs # ad.. 2023. 2. 2.
오픈스택 클라우드 서버 구축(Stein)(11)-Block Storage(Cinder) 설정(LVM) #Storage Node 설정 1) Create a volume group for Cinder on Storage Node. 더보기 [root@storage ~]# pvcreate /dev/sdb1 Physical volume "/dev/sdb1" successfully created [root@storage ~]# vgcreate -s 32M vg_volume01 /dev/sdb1 Volume group "vg_volume01" successfully created 2) Configure Cinder Volume on Storage Node. 더보기 [root@storage ~]# vi /etc/cinder/cinder.conf # add follows into [DEFAULT] section enab.. 2023. 2. 2.
오픈스택 클라우드 서버 구축(Stein)(10)-Block Storage(Cinder) 구성 #Controller Node 설정 1) Add a User or Endpoint for Cinder to Keystone on Control Node. 더보기 # add cinder user (set in service project) [root@Controller ~(keystone)]# openstack user create --domain default --project service --password servicepassword cinder +---------------------+----------------------------------+ | Field | Value | +---------------------+----------------------------------+ | defau.. 2023. 2. 2.
728x90
반응형
SMALL