virt-install KVM 「ディスプレイを開けません」

virt-install KVM 「ディスプレイを開けません」

そこで、KVM (CentOS 6.3 上) を使用して VM を作成しようとしています。使用するコマンドは次のとおりです。

virt-install  --connect qemu:///system  --virt-type kvm  --name ffVM32  --ram 1024 --disk path=/home/datastore/images/ffVM32.img,size=10  --vnc  --cdrom  /home/datastore/backups/CentOS-6.4-i386-minimal.iso   --bridge bridge0

出力は次のようになります:

Starting install...
Allocating 'ffVM32.img'                                             |  10 GB     00:00     
Creating domain...                                                  |    0 B     00:00     
Cannot open display: 
Run 'virt-viewer --help' to see a full list of available command line options
Domain installation still in progress. You can reconnect to 
the console to complete the installation process.

「X Windows System」のグループ インストールを実行しましたが、役に立ちません。Ubuntu 13..04 を実行しているラップトップからこれにアクセスしようとしています。不思議なことに、PCLinuxOS がインストールされている別のマシンから同じことを試したところ、virt-viewer が開き、インストールを続行できます。

すべてのVMを一覧表示しているときに、VMが実行中であることがわかりました

[root@ts3 ~]# virsh list --all
 Id    Name                           State
----------------------------------------------------
 8     ffVM32                         running

何を見逃しているのでしょうか?

答え1

-Xおそらく、 ssh のスイッチを使用してハードウェア ノードにログインしていない可能性があります。

[root@yourmachine]# ssh -X root@<your-hardware-node-ip>

ページからman:

         Enables X11 forwarding.  This can also be specified on a per-host 
         basis in a configuration file.

         X11 forwarding should be enabled with caution.  Users with the
         ability to bypass file permissions on the remote host (for the
         user's X authorization database) can access the local X11 display
         through the forwarded connection.  An attacker may then be able
         to perform activities such as keystroke monitoring.

         For this reason, X11 forwarding is subjected to X11 SECURITY
         extension restrictions by default.  Please refer to the ssh -Y
         option and the ForwardX11Trusted directive in ssh_config(5) for
         more information.

X11 転送を無効にするには、スイッチを使用できます-x

X11 転送を有効にするには、次の場所にある conf ファイルを編集し/etc/ssh/sshd_config、次の行のコメントを解除します。

X11Forwarding Yes

そして、サービスを再起動します。service sshd restart

お役に立てれば。

答え2

vnc を libvirt で動作させるための完全な手順:

  1. ホストに ssh を実行している場合:

    ssh -XY ...@....
    
  2. X11 がインストールされていない場合はインストールします (RHEL の場合、他の場合は調整してください)。

    yum groupinstall "X Window System"
    

手順 1 と同様に、ログアウトして再度 ssh を試す必要がある場合があります。

  1. 上記が単独では機能せず、$DISPLAY定義されていない場合にのみ、定義してみてください。

    export DISPLAY=":0"
    

答え3

Ubuntu ラップトップから-Xスイッチ ( )に接続します。ssh -X [host]

関連情報