
Volume 강제 삭제대시보드에 volume이 남아 있으나, 삭제가 되지 않고 못 찾는다고 할 경우 물리적인 삭제(Block 서버에서 진행)- fdisk로 존재하는 파티션 모두 확인# fdisk로 존재하는 파티션 모두 확인fdisk -l - cinder-mapping 어쩌구 저쩌구 파티션 다 삭제lvremove /dev/cinder-mapping~~~ - 그래도 안지워 진다면? ( fuser 명령어 실행 후 즉시 lvremove해야 된다. 타이밍이 중요! )fuser -kuc /dev/cinder-volumes/volume-39b4bd66-938b-4297-a621-868696fcf20blvremove -f /dev/cinder-volumes/volume-39b4bd66-938b-4297-a621-868..

Instance에 접속할 수 있는 Console url- Instance ID 출력openstack server list- 해당 Instance의 console url 출력openstack console url show [instance id] Nova 서비스 컴포넌트 출력 #List service components to verify successful launch and registration of each process:openstack compute service list +--------------------------------------+----------------+-------------------+----------+---------+-------+--------------------..

Provider 네트워크 및 서브넷 생성- provider 네트워크(외부 네트워크) 생성openstack network create --share --external \ --provider-physical-network provider \ --provider-network-type flat provider +---------------------------+--------------------------------------+ | Field | Value | +---------------------------+--------------------------------------+ | admin_state_up..

Image 등록(생성)- cirros-0.4.0-x86_64-disk.img를 cirros 라는 이름의 qcow2 포맷으로 등록glance image-create --name "cirros" \ --file cirros-0.4.0-x86_64-disk.img \ --disk-format qcow2 --container-format bare \ --visibility=public +------------------+----------------------------------------------------------------------------------+ | Property | Value ..

도메인 생성- example 도메인 생성openstack domain create --description "An Example Domain" example +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | description | An Example Domain | | enabled | True | | id | 4787880fac3e4f4aa1249e768d9a9706 | | na..

- 아래 설정 파일은 self-service networks 환경에서 진행함vi /etc/openstack-dashboard/local_settings.py OPENSTACK_NEUTRON_NETWORK = { 'enable_router': True, 'enable_quotas': False, 'enable_ipv6': False, 'enable_distributed_router': False, 'enable_ha_router': False, 'enable_fip_topology_check': False,}systemctl reload apache2.service Networking in OpenStack | OpenMetal DocsThis guide explains ..

- controller에서 매번 admin-openrc를 실행해야 하는 불편함이 있음- ~controller/Desktop/openstack 디렉터리에 미리 admin-openrc를 생성한 후 진행vi /root/.bashrc#.... /home/controller/Desktop/openstack/admin-openrc

OpenStack Docs: Manage Compute service quotasManage Compute service quotas As an administrative user, you can use the nova quota-* commands, which are provided by the python-novaclient package, to update the Compute service quotas for a specific project or project user, as well as update the quota dedocs.openstack.org- 오픈스택 쿼터 보기(default 값)openstack quota show --default +------------------------..

- chrony에 등록된 서버 목록chronyc sources MS Name/IP address Stratum Poll Reach LastRx Last sample =============================================================================== ^- prod-ntp-3.ntp4.ps5.cano> 2 10 377 560 +11ms[ +11ms] +/- 125ms ^- prod-ntp-5.ntp1.ps5.cano> 2 9 377 163 +11ms[ +11ms] +/- 128ms ^- alphyn.canonical.com 2 10 3..

GUI에서 기본적으로 NetworkManager가 구동 되는데, Netplan설정보다 앞서기 때문에 항상 충돌하는 문제가 발생한다. 때문에 NetworkManager를 쓰지 않는 것이 더 낫다.- NetworkManager 내리기sudo /etc/init.d/network-manager stopsudo update-rc.d -f NetworkManager remove