O virt-manager exibe “Gtk não pôde ser inicializado”

1

Estou executando o virt-manager on RHEL 7.0 , mas sempre exibe " Gtk couldn't be initialized ":

[root@dhb5 ~]# virt-manager --debug --nofork
2015-08-17 03:21:09,895 (cliutils:75): virt-manager startup
2015-08-17 03:21:09,895 (virt-manager:201): Launched as: ['/usr/share/virt-manager/virt-manager', '--debug', '--nofork']
2015-08-17 03:21:09,896 (virt-manager:202): virt-manager version: 0.10.0
2015-08-17 03:21:09,896 (virt-manager:203): virtManager import: <module 'virtManager' from '/usr/share/virt-manager/virtManager/__init__.pyc'>

** (virt-manager:10141): WARNING **: Could not open X display
2015-08-17 03:21:09,957 (virt-manager:246): Traceback (most recent call last):
  File "/usr/share/virt-manager/virt-manager", line 233, in main
    Gtk.Window()
  File "/usr/lib64/python2.7/site-packages/gi/overrides/Gtk.py", line 416, in __init__
    raise RuntimeError("Gtk couldn't be initialized")
RuntimeError: Gtk couldn't be initialized

Gtk couldn't be initialized

E a configuração relacionada X11 em /etc/ssh/sshd_config é assim:

[root@dhb5 ~]# grep -i x11 /etc/ssh/sshd_config
X11Forwarding yes
X11DisplayOffset 10
X11UseLocalhost yes

Eu tento pesquisar no Google muitas postagens e não consigo encontrar a resposta para minha pergunta. Alguém poderia dar algumas pistas sobre este assunto?

    
por Nan Xiao 17.08.2015 / 09:28

2 respostas

0

Uso:

ssh -vv -X x.x.x.x

Se aparecer:

debug1: Remote: No xauth program; cannot forward with spoofing.

tente com:

yum install xauth

(instale-o no host virtual).

    
por 29.09.2015 / 18:13
0

Se você está sentado lá, coçando a cabeça como nós por dias nisso ... isso é o que funcionou para nós.

Edite / etc / ssh / sshd_config e tente configurar " AddressFamily " para " inet " se você estiver usando uma rede estritamente ipv4.

AddressFamily inet

Lembre-se de reiniciar o sshd.

    
por 03.11.2016 / 14:06