Failed to connect to socket /tmp/dbus-xxxxxxx: Connection refused

安装anaconda3之后出现问题
通过tightvnc远程连接服务器CentOS6.5/7,一直都可以正常连接,突然开始报错:
Failed to connect to socket /tmp/dbus-xxxxxxx: Connection refused
关于anaconda的启动关闭
现在,在我禁止anaconda开机执行bashrc内的有关命令后,重启了好几次服务器,发现可以直接执行conda命令,不需要额外操作。

如果重启服务器后,需要用conda时,发现找不到conda,则可以执行

. /user/local/anaconda3/etc/profile.d/conda.sh
conda activate

这时,终端提示符前会加(base),例如

(base) [cad@tmp]#
1
用完conda以后,则需要及时关闭conda,避免发生后续在conda虚拟环境中安装的东西只能在该虚拟环境中使用,脱离该虚拟环境则无法使用
conda deactivate
这时终端提示符会恢复正常,例如

(base) [cad@tmp]#

退出conda的虚拟环境之后,重启一下你自己的vnc端口
vncsercer -kill :port
vncserver :port

你可能感兴趣的:(Failed to connect to socket /tmp/dbus-xxxxxxx: Connection refused)