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

1

Estou tentando criar uma VM usando o 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.

Eu fiz uma instalação em grupo do "X Windows System", mas isso não ajuda. Eu estou tentando acessar isso através do meu laptop que roda o Ubuntu 13..04. O curioso é que quando eu tentei o mesmo de outra máquina que tem o PCLinuxOS, o virt-viewer se abre e eu posso continuar com a instalação.

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

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

O que estou perdendo?

    
por rahuL 10.09.2013 / 08:14

3 respostas

1

Você provavelmente não fez login no seu nó de hardware usando a opção -X do ssh.

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

Da página 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.

Para desabilitar o encaminhamento do X11, você pode usar a opção -x .

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

X11Forwarding Yes

e reinicie o serviço usando service sshd restart

Espero que isso ajude.

    
por 11.09.2013 / 07:52
0

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

    
por 10.09.2013 / 16:10
0

Passos completos para que o vnc funcione com o libvirt:

  1. Se você estiver fazendo ssh no host:

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

    yum groupinstall "X Window System"
    

Você pode precisar fazer o logout e o ssh novamente como na etapa 1.

  1. SOMENTE se o acima não funcionar sozinho e $DISPLAY não estiver definido, tente defini-lo:

    export DISPLAY=":0"
    
por 16.03.2016 / 21:25