- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- unable to display remote X traffic
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2005 10:29 AM
03-03-2005 10:29 AM
unable to display remote X traffic
Fedora Core 3 on an intel system.
I was provided this system and it has all packages loaded (don't ask me why, I didn't do it)
I am unable to display remote X traffic on my linux system from HPUX systems. I am setting xhost +, exporting my DISPLAY on the HPUX, have my linux firewall turned off, SELinux is permissive.
I am stumped - any more ideas out there?
Many thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2005 12:06 AM
03-04-2005 12:06 AM
Re: unable to display remote X traffic
seems like your display manager is blocking
x connection
on SUSE it's in
/etc/sysconfig/displaymanager
DISPLAYMANAGER_XSERVER_TCP_PORT_6000_OPEN="yes"
if you are using GDM, there is option to enable it in settings on welcome screen
rgds Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2005 12:13 AM
03-04-2005 12:13 AM
Re: unable to display remote X traffic
Do you ssh to the HPUX machine to export the display via something like #> export DISPLAY=
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2005 01:35 AM
03-04-2005 01:35 AM
Re: unable to display remote X traffic
ps -efww |grep -i nolisten
I don't know if this is debian specific. A quick recursive grep through /etc/[xX]* for anything with tcp or network would probably help narrow down possibilities.
Hope that helps,
--Dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2005 03:17 AM
03-04-2005 03:17 AM
Re: unable to display remote X traffic
Login as my $LOGNAME, do the xhost +, on the Fedora system - my desktop.
Do the command 'ssh -X root@
Do the command 'ssh -X $LOGNAME@
Is this an 'sshd' config issue or a 'xdm' config issue?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2005 05:30 AM
03-04-2005 05:30 AM
Re: unable to display remote X traffic
or, if it is XDM, check /etc/X11/xdm-config and see if there is a line which reads
DisplayManager.requestPort: 0
If so, try putting an an exclamation mark in front of this line.
I must confess to a bit of a rusty memory on this...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2005 05:52 AM
03-04-2005 05:52 AM
Re: unable to display remote X traffic
Tried the xdm-config modification and the sshd modification.
If I 'ssh -X root@
Preference would be to 'ssh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2005 06:44 AM
03-04-2005 06:44 AM
Re: unable to display remote X traffic
The port 6000 is not open by default. Issue the command 'nmap localhost' and the entry for 600 is not there.
In /etc/X11/gdm is a file called gdm.conf. Modify this file so that the line 'DisallowTCP=true' is changed to read 'DisallowTCP=false'.
Stop and restart X server. (This is usually done bu rebooting.)
Once system comes up you will see port 6000 is open via the 'nmap localhost' command.
Many thanks to all for the help!