virt-install KVM “Não é possível abrir a tela”

virt-install KVM “Não é possível abrir a tela”

Então, estou tentando criar uma VM usando KVM (no CentOS 6.3) e o comando que uso é o seguinte:

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

A saída que recebo é:

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.

Fiz uma instalação em grupo do "X Windows System", mas não ajudou. Estou tentando acessar isso através do meu laptop que executa o Ubuntu 13..04. O curioso é que quando tentei fazer o mesmo em outra máquina que possui PCLinuxOS, o virt-viewer abre e posso continuar com a instalação.

Ao listar todas as VMs, encontro a VM em execução

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

O que estou perdendo?

Responder1

Você provavelmente não se conectou ao seu nó de hardware usando -Xa opção ssh.

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

Da manpágina:

         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.

Para desativar o encaminhamento do X11, você pode usar o -xswitch.

Para habilitar o encaminhamento X11, edite o arquivo conf localizado em /etc/ssh/sshd_confige remova o comentário da seguinte linha:

X11Forwarding Yes

e reinicie o serviço usandoservice sshd restart

Espero que isto ajude.

Responder2

Etapas completas para fazer o vnc funcionar com libvirt:

  1. Se você estiver fazendo ssh para o host:

    ssh -XY ...@....
    
  2. Instale o X11 se não estiver instalado (para RHEL, ajuste para outros):

    yum groupinstall "X Window System"
    

Pode ser necessário tentar fazer logout e ssh novamente como na etapa 1.

  1. SOMENTE se o acima não funcionar por si só e $DISPLAYnão estiver definido, tente defini-lo:

    export DISPLAY=":0"
    

Responder3

Conecte-se com -Xo switch ( ssh -X [host]) do seu laptop Ubuntu.

informação relacionada