OpenStack uses volumes to start virtual machines

Start the virtual machine using the volume

Customize a mirror

For the process, see OpenStack detailed explanation, troubleshooting, experience summary or install windows 10 with virt-install

View available images

openstack image list

Create boot volume based on image

openstack volume create --image CentOS7 --size 300 虚拟机名字

Get available virtual machine types

openstack flavor list

Get available networks

openstack network list

Create a virtual machine

openstack server create --flavor 实例类型 --image 镜像名字 --volume 卷id --nic net-id=75efa1fd-f4d4-48d1-a8de-944cdf217046 虚拟机名字

Guess you like

Origin blog.csdn.net/weixin_40548182/article/details/112347395