mirror of
https://github.com/retspen/webvirtmgr.git
synced 2026-04-25 23:55:57 +03:00
[GH-ISSUE #51] VNC not working on debian 6 #41
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @pablokbs on GitHub (Apr 11, 2013).
Original GitHub issue: https://github.com/retspen/webvirtmgr/issues/51
I can't get to work vnc on debian6, novnc is not available for this distro, so I'm using the normal vnc, the problem is that java is not making the ssh tunnel:
Network Error: com.jcraft.jsch.JSchException: java.net.ConnectException: Connection refused: connect
Any ideas?
@pablokbs commented on GitHub (Apr 12, 2013):
Nevermind, i copied the binaries from an ubuntu instalation (websockify, websocket.py and websocket.pyc) to /usr/local/bin, and modified websockify, changing the line number 16:
from novnc.websocket import WebSocketServer
to this:
from websocket import WebSocketServer
And learned from this: https://github.com/retspen/webvirtmgr/issues/44 that the novnc.html webpage uses the dashboard's ip address to connect the server, so I had to modify my connection, using the public address instead of 127.0.0.1 and now it's working :)