解决Windows用vnc连接Ubuntu时出现The connection was refused by the host computer问题
问题情境:
项目服务器为Ubuntu,为了方便管理,使用vnc远程连接Ubuntu,在Ubuntu上并没有什么特殊设置,好像Ubuntu自带了vnc的相关软件,好像叫vino-什么的,反正没有详细看,然后安装了dconf-editor,这个网上有很多教程,总之配置好了之后,我在Windows上安装了vnc直接就可以远程连接Ubuntu了。但是使用了一段时间之后突然出现了这个问题The connection was refused by the host computer,一番搜索之后终于解决。
直接在shell上输入:
echo $DISPLAY
export DISPLAY=:0
dbus-launch --exit-with-session gsettings set org.gnome.Vino enabled true
dbus-launch --exit-with-session gsettings set org.gnome.Vino prompt-enabled false
dbus-launch --exit-with-session gsettings set org.gnome.Vino require-encryption false
/usr/lib/vino/vino-server
就可以了。
参考文章连接:http://askubuntu.com/questions/304017/how-to-set-up-remote-desktop-sharing-through-ssh
还没有评论,来说两句吧...