部署KVM拓展应用
yum install libguestfs-tools
修改虚拟机root密码
关闭虚拟机
virsh destroy vm-85
linux系统的加密密码通常存储在/etc/shadow 文件中
virt-edit -d vm-85 /etc/shadow
修改方式1:
直接替换已知服务器密码的密码串
修改方式2:
# openssl是一个加密工具,-1 是指普通加密, # hello为key , 123456 才是密码, # 下面就是是生成的密码串,这样我们只要将这些进行对应的替换就可以了 openssl passwd -1 -salt 'hello' '123456'
标签:加密,修改,虚拟机,KVM,密码,root From: https://www.cnblogs.com/libruce/p/16824218.html