openstack+kvm环境使用glance命令下载和上传镜像

1、镜像下载

32位镜像下载地址:https://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-i386-disk.img

64位镜像的下载地址:https://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-disk.img

2、使用glance命令上传镜像

我的系统是32位的,使用glance上传文件:

glance add name='cirros-0.3.0-i386-disk' is_public=true container_format=bare disk_format=qcow2 < cirros-0.3.0-i386-disk.img

使用glance index(或nova image-list)查看上传是否成功

如果上传成功,则可新建虚拟机:

nova boot --flavor  1  --image image_id  --key_name keyname vm1 

连接虚拟机:

ssh -i keyname cirros@ 10.0 . 1.3

结束

你可能感兴趣的:(OpenStack)