개발/Openstack
인스턴스(VM) 생성 실패-1
용술이
2021. 5. 30. 10:48
VolumeNotCreated: Volume <volume_guid> did not finish being created even after we waited 187 seconds or 61 attempts. And its status is creating.
이런 오류가 발생하여 해결함.
인스턴스 생성 시 볼륨을 생성하여, 연결하려고 하는데 볼륨 생성이 너무 오래 걸려서 실패로 떨어지는 것 같아서 설정을 확인함.
cd /etc/nova
vi nova.conf
nova.conf 파일 에서
block_device_allocate_retries = 300
block_device_allocate_retries_interval = 3
부분을 ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
block_device_allocate_retries = 1800
block_device_allocate_retries_interval = 3
30분으로 변경 하여 실행함.
결과는 성공.
반응형