2016-08-18 30 views
0

私は2台のKVMサーバserver_1とserver_2を持っています。 server_1は本番環境にあり、server_2と通信できません.server_2はテスト環境にあり、運用準備中です。KVM - ドライブ 'qed'はホワイトリストに登録されていません

server_1から、2つのクローンVMをコピーしました(実行中のVMをコピーできません)。そして、それらをserver_2に移動しました。

guiインターフェイスを使用して、既存のディスクイメージのインポート>ストレージパス:/home/vmpools/example.img、OSタイプ:Linux、バージョン:CentOS 7.0> RAM:1024、CPUの1>名前:

Unable to complete install: 'internal error: process exited while connecting to monitor: 2016-08-18T09:29:23.423006Z qemu-kvm: -drive file=/home/vmpools/SureCollectGateway.img,if=none,id=drive-virtio-disk0,format=qed: could not open disk image /home/vmpools/SureCollectGateway.img: Driver 'qed' is not whitelisted 
' 

Traceback (most recent call last): 
    File "/usr/share/virt-manager/virtManager/asyncjob.py", line 90, in cb_wrapper 
    callback(asyncjob, *args, **kwargs) 
    File "/usr/share/virt-manager/virtManager/create.py", line 2277, in _do_async_install 
    guest.start_install(meter=meter) 
    File "/usr/share/virt-manager/virtinst/guest.py", line 501, in start_install 
    noboot) 
    File "/usr/share/virt-manager/virtinst/guest.py", line 416, in _create_guest 
    dom = self.conn.createLinux(start_xml or final_xml, 0) 
    File "/usr/lib/python2.7/dist-packages/libvirt.py", line 3606, in createLinux 
    if ret is None:raise libvirtError('virDomainCreateLinux() failed', conn=self) 
libvirtError: internal error: process exited while connecting to monitor: 2016-08-18T09:29:23.423006Z qemu-kvm: -drive file=/home/vmpools/SureCollectGateway.img,if=none,id=drive-virtio-disk0,format=qed: could not open disk image /home/vmpools/SureCollectGateway.img: Driver 'qed' is not whitelisted 

私はISOのから新しいVMのを作成することができますしかし、私は次のエラーを取得する仕上げの際に、残りのデフォルト

を残します。

私はホワイトリストのqedについてどうやって行かなければなりませんか、この仕事をするために何が欠けていますか?

答えて

0

CentOSは、qedディスクフォーマットをサポートしていないため、代わりにqcow2を使用してください。

  1. https://bugs.centos.org/view.php?id=8986
  2. https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/7.0_Release_Notes/Known-Issues-Virtualization.html

qemu-kvm component, BZ#731570 The QEMU Enhanced Disk format (QED) for KVM guest virtual machines is not supported in Red Hat Enterprise Linux 7. Use the qcow2 image format instead.

関連する問題