首页 > 代码库 > KVM故障之(10) - 各种小意外

KVM故障之(10) - 各种小意外

    额.....写到哪是哪,多多谅解!!!!

1.昨天服务器意外断电,结果其中一个KVM虚机死活起不来,报错
“Error restoring domain: operation failed: failed to read qemu header”

起初是再新建一个虚机,然后将硬盘挂上,启动,正常启动,只是原来的配置没有了,这说明虚拟的磁盘没有问题;还是想着完美恢复,就去Google搜索,发现原来是原来主机关机过程中KVM的当前状态,并在下次启动时恢复,虚拟状态文件保存在/var/lib/libvirt/qemu/save,应该是意外断电导致虚拟状态文件有缺失,无法正常读取并且恢复,解决方法就是删除虚拟状态文件。

命令:
rm -Rf /var/lib/libvirt/qemu/save/(虚机名称).save

然后重启,正常;问题解决。


2.error : usbDeviceListAdd:425 : internal error Device 001:003 is already in use

解决方案:将usb的两个硬件删除掉后,重启即可
 


3.在mac上ssh远程操作redhat6.2上面的virt-manager管理虚拟机!结果出现以下的错误!

fsxchen:~ apple$ ssh -X root@192.168.1.3 virt-manager
Traceback (most recent call last):
  File "/usr/share/virt-manager/virt-manager.py", line 383, in <module>
    main()
  File "/usr/share/virt-manager/virt-manager.py", line 248, in main
    cli.setup_i18n(gettext_app, gettext_dir)
  File "/usr/share/virt-manager/virtManager/cli.py", line 90, in setup_i18n
    locale.setlocale(locale.LC_ALL, ‘‘)
  File "/usr/lib64/python2.6/locale.py", line 513, in setlocale
    return _setlocale(category, locale)
locale.Error: unsupported locale setting

解决办法:

export LC_ALL=en_US.UTF-8

原因:KVM只能使用英文模式


4.迁移window 2008机器时报错

[root@server qemu]# virsh start window-bak-2008

error: Failed to start domain window-bak-2008

error: internal error Process exited while reading console log output: Supported machines are:

pc         RHEL 6.4.0 PC (alias of rhel6.4.0)

rhel6.4.0  RHEL 6.4.0 PC (default)

rhel6.3.0  RHEL 6.3.0 PC

rhel6.2.0  RHEL 6.2.0 PC

rhel6.1.0  RHEL 6.1.0 PC

rhel6.0.0  RHEL 6.0.0 PC

rhel5.5.0  RHEL 5.5.0 PC

rhel5.4.4  RHEL 5.4.4 PC

rhel5.4.0  RHEL 5.4.0 PC

解决方案:

修改红色部分

<domain type=‘kvm‘>

  <name>window-2008_bak</name>

  <uuid>9078089c-d7d0-e213-c3a9-d29a8afcb7e1</uuid>

  <memory unit=‘KiB‘>4194304</memory>

  <currentMemory unit=‘KiB‘>4194304</currentMemory>

  <vcpu placement=‘static‘>2</vcpu>

  <os>

    <type arch=‘x86_64‘ machine=‘rhel6.4.0‘>hvm</type>   #对应(default)





本文出自 “崛起” 博客,请务必保留此出处http://binbinwudi8688.blog.51cto.com/3023365/1584082

KVM故障之(10) - 各种小意外