61.Linux2008. 7. 16. 14:51
반응형

Xlib: connection to ":0.0" refused by server

이 에러의 경우 에러 메세지는 remote 시스템 또는 windows의 terminal창에서 GUI환경의 Application을 실행하였을때 발생 하며 아래와 같은메시지가 출력 됩니다.

Xlib: connection to ":0.0" refused by server
Xlib: Client is not authorized to connect to Server
Error: Can't open display: :0.0

위의 에러가 발생하면 remote 시스템 또는 windows의 terminal창에서 login한 후 아래의 명령을 실행하여 local 시스템이 remote 시스템의 access control list에 포함 되도록 한다.

# xhost "local-system-hostname"

예) local 시스템의 hostname이 "bigom"이라면 아래와 같이 지정한다.

# xhost  test
cat being added to access control list

특정한 호스트 외에 다른 모든 시스템을 access control list 에 추가하려면 아래와 같이 지정한다.

# xhost +
access control disabled, clients can connect from any host

Posted by 1010