How do I fix a "cannot open display" error when opening an X program after ssh'ing with X11 forwarding enabled?

117

58

After launching the X11 app (XQuartz 2.3.6, xorg-server 1.4.2-apple56) on my Mac (OS X 10.6.8), opening an terminal in X11 and running xhost +, I then ssh -Y to my Ubuntu 10.04 VM (running on VMware Fusion). When I run gedit .bashrc (for example), I get:

(gedit:9510): Gtk-WARNING **: cannot open display: 

set | grep DISPLAY returns nothing.

But if I ssh -Y into my Ubuntu 11.04 machine, gedit .bashrc works. echo $DISPLAY returns "localhost:10.0".

I tried export DISPLAY=localhost:10.0 while sshed into my VM and then running gedit .bashrc, but I get:

(gedit:9625): Gtk-WARNING **: cannot open display: localhost:10.0

What could be different in the configuration of the two difference Ubuntu machines that would explain why one works and the other doesn't?

Update: As suggested by Zoredache in the comment below, I ran sudo apt-get install xbase-clients, but I continue to have the same problem.

Daryl Spitzer

Posted 2011-07-13T18:13:00.253

Reputation: 7 505

1In my case it was just a matter of upgrading the XQuartz version of MacOS – Waruna Ranasinghe – 2016-12-29T18:20:56.307

In my case, I needed to restart XMing on Windows. X-forwarding was always working until it stopped for unknown reasons. I had no idea why $DISPLAY would output localhost:10.0 either. In Putty, my X11 location is set to localhost:0.0. Force quitting XMing and restarting fixed the issue without changing anything. – Shailen – 2018-03-01T17:14:19.793

I also have the same error and setting DISPLAY won't fix it. ```eog new.png Failed to connect to Mir: Failed to connect to server socket: No such file or directory Unable to init server: Could not connect: Connection refused

(eog:9994): Gtk-WARNING **: cannot open display: :0``` – skyuuka – 2019-08-18T09:22:15.230

2Does the Ubuntu 10.04 box have the proper tools for X11 installed? Install xbase-clients, if it isn't installed already. – Zoredache – 2011-07-13T18:22:14.960

I installed it but still have the same problem. (See above.) – Daryl Spitzer – 2011-07-13T18:29:52.657

Yes. Just to be sure, I restarted the VM (and reconnected through SSH afterward). – Daryl Spitzer – 2011-07-13T18:38:00.667

3Maybe try passing the -vv option to ssh when you connect, this prints verbose debug messages, you should see several comments about X11 forwarding while connecting. – Zoredache – 2011-07-13T18:43:32.837

1@jcrawfordor You did check the X11Forwarding on the ubuntu one, and that you have xbase-clients installed and that you can start Xapps on the mac on the terminal you're making ssh connection from. (Check that $DISPLAY is set on the terminal you run ssh from. – Manwe – 2012-02-27T08:16:30.453

Note that I'm ready to accept DefK's answer, after it's modified to include both enabling X11 forwarding and installing base-clients. (Or I'll accept a new answer if someone else takes the time to explain both.) – Daryl Spitzer – 2012-02-27T19:10:15.567

Answers

49

Check the server's sshd_config (normally /etc/ssh/sshd_config), and make sure the X11Forwarding option is enabled with the line

X11Forwarding yes

If X11Forwarding is not specified, the default is no on the Debian machines I have available to check.

DerfK

Posted 2011-07-13T18:13:00.253

Reputation: 917

34@DerfK, in my system "X11Forwarding yes" was there already still I am getting error as, **(gedit:8381): Gtk-WARNING : cannot open display: in such cases – A J – 2015-10-06T08:30:51.360

1On Debian you might have to install package xauth, then log again. – comte – 2018-08-07T09:40:50.160

$ ssh username@hostname -Y this worked for me – MarcoZen – 2019-07-31T21:32:31.613

4I discovered after setting up another Ubuntu VM, that I need to both install xbase-clients and enable X11Forwarding. Update your answer to include both and I'll accept it. – Daryl Spitzer – 2011-07-13T19:21:57.480

1Interesting. At least on the new install of 10.04 that I did this morning X11Forwarding was enabled by default. The Ubuntu guys must be messing around with defaults again. – Zoredache – 2011-07-13T19:50:45.557

62

From xhost+ : How to Fix “Cannot Open Display” Error While Launching GUI on Remote Server:

Answer: You can fix the “cannot open display” error by following the xhost procedure mentioned in this article.

Allow clients to connect from any host using xhost+

Execute the following command to disable the access control, by which you can allow clients to connect from any host.

$ xhost +

access control disabled, clients can connect from any host

Enable X11 forwarding

While doing ssh use the option -X to enable X11 forwarding.

$ ssh username@hostname -X

Enable trusted X11 forwarding, by using the -Y option,

$ ssh username@hostname -Y

Open GUI applications in that host

After opening ssh connection to the remote host as explained above, you can open any GUI application which will open it without any issue.

If you still get the “cannot open display” error, set the DISPLAY variable as shown below.

$ export DISPLAY='IP:0.0'

Note: IP is the local workstation’s IP where you want the GUI application to be displayed.

harrymc

Posted 2011-07-13T18:13:00.253

Reputation: 306 093

3Note that running xhost + is very unsecure and should not be used! As Stefan Rogin mentioned, the attacker can then from the host connect to your XSession, read all you type, or even alter the screen you see. – jirislav – 2018-05-13T08:38:00.077

the last one export Display=IP:0.0 did it for me – javadba – 2019-10-18T22:41:24.050

For whatever reason, -Y got it working, -X doesn't. – ibic – 2019-10-26T14:44:57.977

14+1 for the Note that IP = is the local workstation's IP where you want to get the GUI – PCoder – 2013-11-02T10:15:35.743

3For those having similar issues on OS X, also make sure you have XQuartz installed, otherwise none of these fixes help. (OP's question shows he has XQuartz, so this is more a side note to those having similar issues as I was) – Dolan Antenucci – 2014-05-28T21:49:00.410

18

I've had this problem when logging into a Ubuntu VM from Mac OS X as well -- it doesn't seem to like 'localhost' in the display variable for some reason. So set the IP manually, as harrymc suggests:

export DISPLAY="127.0.0.1:10.0"

Then X11 programs should be fine. It doesn't seem like it should be necessary to tell the OS that localhost and 127.0.0.1 are equivalent, but it works, at least.

spinup

Posted 2011-07-13T18:13:00.253

Reputation: 474

1On a Debian install for the Beagle Bone Black, /etc/host was not set to readable by anyone but root. This caused the symptoms reported here. Made /etc/hosts readable by all, and it worked fine. – Daniel – 2016-03-06T02:00:30.683

This worked for me. Any idea why localhost wasn't working? – Alex – 2013-09-24T04:47:26.757

2BINGO! I've been stuck by that problem for some time... I connected by SSH and couldn't launch Gtk programs (plain X11, like "xeyes", worked however). DISPLAY was correct. Actually, the resolution of "localhost" wasn't! If I set manually DISPLAY=127.0.0.1:10.0, or DISPLAY=::1:10.0 it does work. Editing /etc/hosts seems to have no effect; and DNS is correctly configured ("dig localhost" correclty report both 127.0.0.1 and ::1) So, it seems to be a bug in whatever does DNS resolution for X11 connections in Gtk (gtk? gdk? glib? other?). – Pablo Saratxaga – 2014-02-09T11:38:28.463

14

I had this problem with my CentOS KVM server, I was missing the "xauth" program.

Joril

Posted 2011-07-13T18:13:00.253

Reputation: 1 879

1This helped me out on my minimal debian installation, thank you very much! – binOr – 2013-01-16T09:44:52.760

9

If you have this problem after some time when running with -X arg. or just ForwardX11 in /etc/ssh/ssh_config, then run $ ssh username@hostname -Y, to enable trusted X11 forwarding, don't know the exact cause but I'm guessing with -X some features expire after some time, probably to increase security.

Here is what I found online :

If you use ssh -X remotemachine the remote machine is treated as an untrusted client. So your local client sends a command to the remote machine and receives the graphical output. If your command violates some security settings you'll receive an error instead.

But if you use ssh -Y remotemachine the remote machine is treated as trusted client. This last option can open security problems. Because other graphical (X11) client could sniff data from the remote machine (make screenshots, do keylogging and other nasty stuff) and it is even possible to alter those data.

If you want to know more about those things I suggest reading the Xsecurity manpage or the X Security extension spec. Furthermore you can check the options ForwardX11 and ForwardX11Trusted in your /etc/ssh/ssh_config.

sources:

Stefan Rogin

Posted 2011-07-13T18:13:00.253

Reputation: 305

6

Just Tested On My Mac, Other Systems Might Be OK:

  1. Allow clients to connect from any host using xhost+

    $ xhost +

  2. You should have an environment that support X11 display

    [Mac System] Install X11 for mac https://www.xquartz.org/

  3. You should let your ssh-server forward x11 display

    update /etc/ssh/sshd_config and set X11Forwarding yes, then restart your ssh server

  4. You should let your ssh session forward x11 display with -X parameter

    $ ssh -X user@ip

  5. How to open X11 app in PyCharm?
    • open a ssh session that support X11 display(remember to keep this session)
    • run echo $DISPLAY in that ssh session
    • set DISPLAY environment variable for your PyCharm

Color

Posted 2011-07-13T18:13:00.253

Reputation: 161

1Why is this different or why should it be preferred over any of the other answer? Please explain if you can with a simple [edit]. You can do it!! – Pimp Juice IT – 2017-08-30T12:34:29.597

@McDonald's Thanks, updated with more details. – Color – 2017-09-04T02:58:39.643

4

I had to put in /etc/ssh/sshd_config the following:

X11UseLocalhost no

Rather then setting it "yes". Strange if the default is "NO" Users using putty with XMing under Windows. I use straight ssh over Fedora. Occasionally it would start giving us

error can't open display localhost

Reboot of the server would usually fix it but this is stupid. Did the above, restarted the service sshd on the server and presto new connections working fine again.

Luigi

Posted 2011-07-13T18:13:00.253

Reputation: 41

4

When running UXTERM or XTERM just issue

export $DISPLAY 

The variable will be there. Then just set it and export it.

Oracle2066

Posted 2011-07-13T18:13:00.253

Reputation: 41

3

This setup works for me:

Local (64 bit Cygwin on Windows 10) DISPLAY=:0

Server (Amazon EC2 RHEL 7.6) DISPLAY=:10.0

These settings were found by clicking "X applications menu on :0" in taskbar and selecting System Tools > Terminal

qwr

Posted 2011-07-13T18:13:00.253

Reputation: 150

This works for me (XQuartz on macOS Mojave, X11 Client on Debian 10). Thanks! – Arnie97 – 2019-11-27T17:52:41.727

2

I also had this problem with Solaris 10 and found that the listener was not set up.

svccfg –s /application/x11/x11-server listprop options/tcp_listen
svccfg –s /application/x11/x11-server setprop  options/tcp_listen = true

Doug Somers

Posted 2011-07-13T18:13:00.253

Reputation: 21

1

I just found a nice hiccup in my setup that prevented x forwarding: My firewall was blocking all connections from localhost, thus preventing the tunnel to be reached

Pelle

Posted 2011-07-13T18:13:00.253

Reputation: 151

1

If you happen to be using Konsole simply switch to another terminal emulator such as Xfce Terminal and try again using root.

Oliver Dechant

Posted 2011-07-13T18:13:00.253

Reputation: 111

1

open terminal $ ssh username@hostname -X

$ ssh username@hostname -Y

$ export DISPLAY='IP:0.0'

export DISPLAY="127.0.0.1:10.0" all should work.

Kenny Gichuhi

Posted 2011-07-13T18:13:00.253

Reputation: 11

Thanks. Works for my special case when DISPLAY='localhost:10.0' is not working. – xpt – 2018-12-09T22:42:02.160

1

On CentOS 6.5, I suddenly lost remote X-programs access after messing with /etc/hosts. Same symptom of empty $DISPLAY variable (no help setting/exporting it manually).

The 127.0.0.1 entry pointing to the actual hostname is necessary; in fact the order seems to be also relevant (put last & it won't work...)

[root@poseidon /etc]$ cat hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1       localhost.localdomain localhost
::1     localhost6.localdomain6 localhost6
127.0.0.1 poseidon.mycampus.edu poseidon
1XX.XXX.XXX.208 poseidon.mycampus.edu poseidon

After fixing this, xeyes, xclock and other X test toys are working again, therefore my needed virt-manager is also back on line.

David Ramirez

Posted 2011-07-13T18:13:00.253

Reputation: 11