- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- XDMCP Indirect on Xserver init
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
04-03-2001 06:06 AM
04-03-2001 06:06 AM
Now, I can't seem to get the Xstartup not to present a graphical console with a direct login to the 700 series.
In order to get my indirect, I must log into the 700, end the Xsession either by changing runlevel or killing X.. then launching X -indirect to get my chooser.
I have tried with varying levels of success to modify the Xaccess, Xstartup to get an indirect chooser, but always the direct login appears.
How do I configure the X session to present this chooser on bootup with just the list of hosts I want. A broadcast will not do (too many servers)
Thanks,
Bill
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2001 06:33 AM
04-03-2001 06:33 AM
Re: XDMCP Indirect on Xserver init
could this be 1/2 way there ?
/usr/bin/X11/X :0 -indirect
see man Xservers ...... at a guess you may need to edit the /usr/dt/config/Xservers file and the Xaccess file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2001 08:06 AM
04-03-2001 08:06 AM
Re: XDMCP Indirect on Xserver init
1) Copy /usr/dt/config/Xservers to /etc/dt/config
2) Edit /etc/dt/config/Xservers, and change the "local" entry to the following:
* local local@console /usr/bin/X11/X :0 -indirect localhost
3) Create /etc/dt/config/Xaccess with the following contents:
* # Grant access to all remote displays
* CHOOSER host1 host2 host3 host4 host5 # Give chooser list of 5 hosts
4) Stop and restart CDE:
# /sbin/init.d/dtlogin.rc stop
# /sbin/init.d/dtlogin.rc start
This should cause your system to come up with a listing of your 5 hosts (host1 through host5)
I hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2001 05:46 AM
04-04-2001 05:46 AM
Re: XDMCP Indirect on Xserver init
Been a while, but I think I did this at one time or another. Seem like I had a problem with the Xservers entry. If you use as stated above, I think the Xserver on the 700 will reset when you try to connect to another host, causing you to get into a continuous loop of logining onto yourself. What I did was change the Xserver as below.
This will cause the chooser to be the first thing that appears on your console.
Change the Xaccess file as stated above.
Also, I think I had a problem with the getty on the console resetting my session. I think to fix that, I commented out the "exec getty" from the /usr/dt/config/dtrc.d/90_dtlogin_st.
Hope this helps...
...jcd...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2001 06:32 AM
04-04-2001 06:32 AM
Re: XDMCP Indirect on Xserver init
I had problems with running xserver and chooser on the 700 at the same time.
Disregard the Xserver info. What I did was comment out the Xserver entry so dtlogin would not start cde. Then I added lines to /sbin/init.d/dtlogin.rc to start the chooser.
/usr/bin/X11/X :0 -inherent
...jcd...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2001 07:25 AM
04-04-2001 07:25 AM
Re: XDMCP Indirect on Xserver init
Thanks for the help, wait for the info...
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2001 09:10 AM
04-04-2001 09:10 AM
Re: XDMCP Indirect on Xserver init
comment out the line in Xserver
modify the Xaccess as stated above.
and I tought I had added a line to the dtlogin.rc, however, that was incorrect. Adding a line to the dtlogin.rc will not work. I created a new rc call for the chooser called x11chooser. I used much of the same code as the dtlogin.rc.
Then I created the links for the K&S files in the rc2.d dir
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2001 06:29 AM
04-05-2001 06:29 AM
Re: XDMCP Indirect on Xserver init
Thanks,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2001 08:12 AM
04-05-2001 08:12 AM
SolutionThere is only one thing to keep in mind. The chooser will come up at boot. This may be a hurt you if you start running to problems with your 700. What may be better than starting the chooser at boot, is to have the console login come up at boot. Then sign in as root and have the .profile kick off the chooser.
I might would add after PATH in .profile:
echo "Do you wish to run chooser \c"
read choice
if [ ${choice} = y ]
then
exec /usr/bin/X11/X :0 -indirect 700hostname
else
the rest of the profile
fi
That would do the same thing, but give you the console on initial boot.
Hope this helps.
...jcd...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2001 04:43 AM
04-06-2001 04:43 AM
Re: XDMCP Indirect on Xserver init
works like a charm.
relating to having a problem, I can always boot into single user mode (or just ignite it!)
Thanks,
bill