- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Xterm problem on HP-UX
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
10-07-2005 01:35 AM
10-07-2005 01:35 AM
I can't get Xterm from my PC to work.
Is this a DNS-problem or a FireWall problem?
When i type Xterm on my HP-UX server I get the following mesage:
xterm
Error: Can't open display: 194.213.161.246:0
Error: Couldn't find per display information
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2005 01:55 AM
10-07-2005 01:55 AM
Re: Xterm problem on HP-UX
2) On the HP-UX box, set the DISPLAY variable to the IP address of your workstation.
DISPLAY=192.213.161.264:0.0
export display
3) Make sure the /etc/rc.config.d/xfs font server is set for 1 which means auto start.
4) Perhaps manually start the font server: /sbin/init.d/xfs start
Try again.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2005 02:07 AM
10-07-2005 02:07 AM
Re: Xterm problem on HP-UX
I have a connection to the box on telnet and ssh. Which port does xterm use?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2005 02:13 AM
10-07-2005 02:13 AM
Re: Xterm problem on HP-UX
Is that right?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2005 02:59 AM
10-07-2005 02:59 AM
Re: Xterm problem on HP-UX
# ssh -XCt the_other_box
Enjoy, Have FUN!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2005 06:22 AM
10-07-2005 06:22 AM
Solution(1) Check your Xserver is running.
Xservers accepts connections through TCP port 6000.
Then, open a CMD windows in your PC and type:
netstat -an | find ":6000"
It should print a line whose last word is "LISTENING".
If not, you need to start an Xserver.
(2) Open a telnet session and run in your HP-UX server:
$ export DISPLAY=194.213.161.246:0
$ xterm &
$ netstat -an | grep '194.213.161.246.6000'
Last command should print a line. Last word in this line reports the status of Xterm connection. I guess it might show SYN_SENT (or any other different than ESTABLISHED). In this case, this is due to anything (for instance, a firewall) is preventing the Xterm connection.
Good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2005 06:40 PM
10-09-2005 06:40 PM
Re: Xterm problem on HP-UX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2005 08:02 PM
10-09-2005 08:02 PM
Re: Xterm problem on HP-UX
/me just learned something new
Not that I'm going to use that, but 'find' on windows is 'grep' on *nix, except when you have installed a unix toolkit like cygwin.
How confusing :)
Enjoy, Have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2005 03:37 AM
10-10-2005 03:37 AM
Re: Xterm problem on HP-UX
Bill Hassell, sysadmin