xhost: unable to open display…
在Linux下设置xhost
# 先切换到root用户,执行xhost +
[root@host01 ~]# xhost +
access control disabled, clients can connect from any host
# 然后再切换到oracle用户,执行export DISPLAY=:0.0
[oracle@host01 ~]$ export DISPLAY=:0.0
[oracle@host01 ~]$ xhost +
access control disabled, clients can connect from any host
DISPLAY科普
DISPLAY变量是用来设置将图形显示到何处.比如CENTOS,你用图形界面登录进去,DISPLAY自动设置为DISPLAY=:0.0表示显式到本地监视器,那么通过终端工具(例如:xshell)进去,运行图形界面的程序,如果没有设置,系统是不允许程序启动的。
在执行xhost +命令(使得所有客户都可以访问)
正常返回信息为:
access control disabled,clients can connect from any host
如果xhost +不能执行,报错:xhost : unable to open display …
有个比较简单的解决办法,就是使用xmanager的passive
准备:安装xmanager文章来源:https://www.toymoban.com/news/detail-765474.html
步骤:
1.启动xmanager的passive
2.执行以下的命令文章来源地址https://www.toymoban.com/news/detail-765474.html
# oracle用户执行
[oracle@host01 ~]$ export DISPLAY=(Windows主机IP):0.0
# 打开xclock测试图形化是否能显示成功,如果显示命令没有,下一个xclock就可以了
[oracle@host01 ~]$ xclock
如果在passive的窗口出现一个图形化的钟表,就证明图形化显示成功
到了这里,关于xhost: unable to open display..的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!