紧密的VNC服务器和鳄梨酱

时间:2018-11-15 21:18:19

标签: linux ubuntu vnc vnc-server tightvnc

我有一个使用以下链接安装了VNC服务器(TightVNC)的VM:https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-vnc-on-ubuntu-18-04

已成功安装,并且可以看到端口5901正在运行

/etc/tigervnc$ netstat -tulpn
(Not all processes could be identified, non-owned process info
 will not be shown, you would have to be root to see it all.)
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name    
tcp        0      0 127.0.0.1:5901          0.0.0.0:*               LISTEN      16460/Xtigervnc     
tcp        0      0 127.0.0.1:5902          0.0.0.0:*               LISTEN      16183/Xtigervnc     
tcp        0      0 127.0.0.53:53           0.0.0.0:*               LISTEN      -                   
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      -                   
tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN      -                   
tcp6       0      0 ::1:5901                :::*                    LISTEN      16460/Xtigervnc     
tcp6       0      0 ::1:5902                :::*                    LISTEN      16183/Xtigervnc     
tcp6       0      0 :::22                   :::*                    LISTEN      -                   
tcp6       0      0 ::1:631                 :::*                    LISTEN      -                   
udp        0      0 0.0.0.0:36618           0.0.0.0:*                           -                   
udp    29184      0 127.0.0.53:53           0.0.0.0:*                           -                   
udp        0      0 0.0.0.0:68              0.0.0.0:*                           -                   
udp        0      0 0.0.0.0:631             0.0.0.0:*                           -                   
udp     7680      0 0.0.0.0:5353            0.0.0.0:*                           -                   
udp6       0      0 :::37372                :::*                                -                   
udp6   20736      0 :::5353                 :::*  

现在从本地计算机上,我尝试通过VM(根据链接https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-vnc-on-ubuntu-18-04)将端口绑定到本地计算机

ssh -L 5901:127.0.0.1:5901 -C -N -l test 172.1.1.1

在我的本地计算机上,我能够看到端口已绑定到5901

/etc/guacamole$ fuser 5901/tcp
5901/tcp:            22049

现在,当我尝试使用127.0.0.1:5901建立VNC连接时,它会提示输入虚拟机的密码,并且仅显示空白页面。

enter image description here

有人可以帮我吗?

谢谢, 哈里

2 个答案:

答案 0 :(得分:-1)

这样编辑〜/ .vnc / xstartup文件:

#!/bin/sh

startxfce4 &

我遇到了同样的问题,这解决了

作为参考,我从这里得到的: https://www.raspberrypi.org/forums/viewtopic.php?t=52557

答案 1 :(得分:-2)

您还可以尝试杀死并重新启动VNC服务器

杀死$(pgrep Xvnc) vncserver

您是否要从本地计算机到本地计算机进行VNC?我假设只是为了测试正确?

如果您没有遭到拒绝,至少应该与服务部门进行对话。