1. 程式人生 > 其它 >openstack中修改centos7 映象的root密碼

openstack中修改centos7 映象的root密碼

第一步:需要我們提前準備好映象,具體的映象可以自己在官網下載,國內的建議在 (中科大https://mirrors.ustc.edu.cn/

由於我不知道root的密碼,使用下面的方法修改centos7映象的root密碼

第二步:安裝軟體libguestfs-tools

[root@node152 ~]# yum install libguestfs-tools -y

第三步,設定一個固定密碼

[root@node152 ~]# virt-customize -a CentOS-7-x86_64-GenericCloud-2009.qcow2 --root-password password:123456

執行過程

[root@node152 ~]# virt-customize -a CentOS-7-x86_64-GenericCloud-2009.qcow2 --root-password password:123456
[   0.0] Examining the guest ...
virt-customize: error: libguestfs error: could not create appliance through 
libvirt.
Try running qemu directly without libvirt using this environment variable:
export LIBGUESTFS_BACKEND=direct
Original error from libvirt: Cannot access storage file 
'/root/CentOS-7-x86_64-GenericCloud-2009.qcow2' (as uid:107, gid:107): 
Permission denied [code=38 int1=13]
If reporting bugs, run virt-customize with debugging enabled and include 
the complete output:
virt-customize -v -x [...]

上面提示錯誤。 沒有LIBGUESTFS_BACKEND 環境變數
第四步,臨時增加LIBGUESTFS_BACKEND 環境變數

[root@node152 ~]# export LIBGUESTFS_BACKEND=direct

第五步,再次執行設定固定密碼的命令,設定密碼為123456

[root@node152 ~]# virt-customize -a CentOS-7-x86_64-GenericCloud-2009.qcow2 --root-password password:123456

執行過程

[root@node152 ~]# virt-customize -a CentOS-7-x86_64-GenericCloud-2009.qcow2 --root-password password:123456

[ 0.0] Examining the guest ...
[ 5.6] Setting a random seed
[ 5.7] Setting passwords
[ 7.3] Finishing off

設定成功

上傳映象並通過該映象建立例項,使用剛才設定的root密碼登入成功。

openstack上傳映象檢視上期博文openstack-glance上傳映象實踐