I need to get an x window to display on 'nathanb-box' from 'ceres' without tunneling X over ssh.

[nathanb@nathanb-box ~] xhost +ceres
ceres being added to access control list
[nathanb@nathanb-box ~] xhost +ceres.foo.com
ceres.foo.com being added to access control list
[nathanb@nathanb-box ~] echo $DISPLAY
:0.0
[nathanb@nathanb-box ~] xauth list | grep nathanb
nathanb-box.foo.com:0  MIT-MAGIC-COOKIE-1  a27ad72172460013c07e3a31b0d7d6da

On ceres...

[nathanb@ceres ~] export DISPLAY=nathanb-box.foo.com:0.0
[nathanb@ceres ~] xauth list | grep nathanb
nathanb-box.foo.com:0  MIT-MAGIC-COOKIE-1  a27ad72172460013c07e3a31b0d7d6da
[nathanb@ceres ~] xterm
xterm Xt error: Can't open display: nathanb-box.foo.com:0.0

What am I missing?

Thanks, Nathan

link|improve this question

78% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Turns out that X was being started with -nolisten tcp. I fixed that up right proper and now it's working like a charm.

link|improve this answer
in that case you might consider closing the question – DaveParillo Oct 2 '09 at 16:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.