解决Windows用vnc连接Ubuntu时出现The connection was refused by the host computer问题

客官°小女子只卖身不卖艺 2022-07-16 12:21 1122阅读 0赞

问题情境:

项目服务器为Ubuntu,为了方便管理,使用vnc远程连接Ubuntu,在Ubuntu上并没有什么特殊设置,好像Ubuntu自带了vnc的相关软件,好像叫vino-什么的,反正没有详细看,然后安装了dconf-editor,这个网上有很多教程,总之配置好了之后,我在Windows上安装了vnc直接就可以远程连接Ubuntu了。但是使用了一段时间之后突然出现了这个问题The connection was refused by the host computer,一番搜索之后终于解决。

直接在shell上输入:

  1. echo $DISPLAY
  2. export DISPLAY=:0
  3. dbus-launch --exit-with-session gsettings set org.gnome.Vino enabled true
  4. dbus-launch --exit-with-session gsettings set org.gnome.Vino prompt-enabled false
  5. dbus-launch --exit-with-session gsettings set org.gnome.Vino require-encryption false
  6. /usr/lib/vino/vino-server

就可以了。

参考文章连接:http://askubuntu.com/questions/304017/how-to-set-up-remote-desktop-sharing-through-ssh

发表评论

表情:
评论列表 (有 0 条评论,1122人围观)

还没有评论,来说两句吧...

相关阅读