- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- xhost: where to save a list of allowed clients?
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
09-10-2003 07:39 AM
09-10-2003 07:39 AM
I run a graphical application on HP-UX machine locally (it serves both as X client and X server).
I can't find where a list of allowed X clients is stored (i get some list when trying to run graphical apps). After 'xhost +' command everything is OK.
Manual pages for 'xhost' mention configuration file /etc/X*.hosts, but I don't have such files. BTW, what are possible meanings of '*"?
Thanks and points in advance!
BR,
Mihails
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2003 07:46 AM
09-10-2003 07:46 AM
Re: xhost: where to save a list of allowed clients?
for i in `cat my_list_hosts`
do
xhost $i
done
On the other hand, /etc/X*.hosts will be any file that begins with an X and ends with ".hosts"
Hope this helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2003 07:47 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2003 04:49 AM
09-11-2003 04:49 AM
Re: xhost: where to save a list of allowed clients?
the syntax /etc/X*.hosts refers to the display specific access control of X11:
/etc/X0.hosts for display :0
/etc/X1.hosts for display :1 ...
So if you put the relevant hostnames in
/etc/X0.hosts, access to your display (which is nearly always :0) ist granted.
mfG Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2003 04:48 AM
09-14-2003 04:48 AM
Re: xhost: where to save a list of allowed clients?
I also believed so and tried using the files, but this didn't work for me. Thank you!