一、修改镜像密码
1、打开一个要修改的镜像
随便找一台centos服务器
[root@linux-node1 ~]#wget http://cloud.centos.org/centos/7/images/CentOS-7-x86_64-GenericCloud.qco
guestfish --rw -a CentOS--x86_64-GenericCloud.qcow2
2、 运行这个镜像
><fs> run
3、列出文件系统
><fs> list-filesystems
4、挂载到根目录
mount /dev/sda1 /
5、打开cloud-init的配置文件cloud.cfg,添加如下内容:
><fs> vi /etc/cloud/cloud.cfg
disable_root: 0
ssh_pwauth: 1
chpasswd:
list: |
root:ljy2019 <-----自定义root密码
expire:False
7、退出guestfish
><fs> quit
8、将修改好的镜像上传openstack即可使用
[root@linux-node1 ~]#glance image-create --name "CentOS-7-x86" --file CentOS-7-x86_64-GenericCloud.qcow2 --disk-format qcow2 --container-format bare --visibility public --progress
9、创建虚拟机
查看虚拟机类型
查看网络
创建虚拟机
openstack server create --flavor m3.nano --image CentOS-7-x86 --nic net-id='943d1f89-2b20-43e7-9242-61d2c8188ed4' --security-group default --key-name mykey centos7
查看虚拟机
[root@linux-node1 ~]# nova list