XDMCP fatal error: Session declined No valid address


 
Thread Tools Search this Thread
Operating Systems Solaris XDMCP fatal error: Session declined No valid address
# 1  
Old 01-28-2011
XDMCP fatal error: Session declined No valid address

Hello all, I just post here to expose an issue I have encountered two days ago and finally successfully solve just right now using info on this site( but not only).

Config : Two SUN/ORACLE sparc Solaris 10 system.
Purpose : do a remote CDE login from host one to the host two.
method: from login window on host one do a 'remote desktop to' the second SUN system.
Issue : I get a gray screen with an X then I get a window that flashes and finally screen come back to local host login windows.

The massage XDMCP fatal error: Session declined No valid address : was displayed in the /var/dt/Xerrors of the local host one (where I do the remote connection command).

Solution: for me the issue was on the two following services oh host one : cde-login and x11-server. I have modified two properties values like that :

svccfg -s cde-login setprop dtlogin/args=\"\"
svcadm restart cde-login

svccfg -s x11-server setprop options/tcp_listen=true
svcadm restart cde-login

and my issue was solved.

Regards.

Last edited by sunsunsun; 01-28-2011 at 09:30 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. What is on Your Mind?

PHP Fatal Errors During SSL Cert Management - PHP Fatal error: xc_fcntl_mutex failed

Today, I noticed some errors in our SSL cert renewal log files, mostly related to domains where the IP address had changed. Concerned about this, rebuilt out SSL cert, which normally goes well without a hiccup. However, for today, for some reason which I cannot explain, there was a PHP error... (0 Replies)
Discussion started by: Neo
0 Replies

2. Ubuntu

XDMCP Fatal Error 169 address

Hello. I previously had my xdm server running and it allowed me to use cygwin to run remote desktop with X -query x.x.x.x :1 But recently i noticed it had stopped working. I get an error as shown in image, and i noticed that it mentions a 169.x.x.x. address. I am wondering if anyone had had this... (1 Reply)
Discussion started by: duxbuz
1 Replies

3. Shell Programming and Scripting

Checking for a valid MAC Address

I have a ksh script and would like to validate a MAC address that is input by the user: 00:14:4F:FC:00:49 example: MAC=`/usr/bin/ckint -p "Enter MAC address"` echo $MAC echo " " Obviously chkint will not work, but does anyone have any suggestions? Thanks (9 Replies)
Discussion started by: hxman
9 Replies

4. Solaris

Cygwin X Server error: xdmcp fatal error session failed session 23 failed for display

Hi, i got the following error when i tried to access the cygwin x server from a windows XP PC. "xdmcp fatal error session failed session 23 failed for display" Alternatively, when i tried to access the same Cygwin X Server from another windows XP PC which is on a different LAN... (3 Replies)
Discussion started by: HarishKumarM
3 Replies

5. Solaris

XDMCP Error

Hi Friends, I am not able to login through X browser from Windows Machine to Sun Fire V890 server. Solaris 10 is installed on this machine. Please suggest me what changes need to be done in Solaris Server. Thanks in Advance (2 Replies)
Discussion started by: durgaprasadr13
2 Replies

6. Solaris

XDMCP fatal error: Session declined No valid address

Hi ppl, anyone has encounter this error before? I can't remote login to another machine residing in the same subnet via CDE and the error I get in var/dt/Xerrors is XDMCP fatal error: Session declined No valid address Warning: Name: submenu_options_button Class: XmRowColumn ... (2 Replies)
Discussion started by: xiaochensg
2 Replies

7. HP-UX

Error: XDMCP timed out. State=4 (CollectBroadcastQuery)

Hello, I am a new member of this forum. I am trying to solve a following problem with CDE in HPUX 11. The error is Error: XDMCP timed out. State=4 (CollectBroadcastQuery). I have uncommented the following lines from the Xaccess file - * grant service to all remote displays * ... (0 Replies)
Discussion started by: shad
0 Replies

8. IP Networking

intercept the ip address of a telnet session

The situation: a Unix system (UnixWare 7.1.3) to which are connected other systems; various p.c. on the LAN that they connect Unix to the system via TelNet. The problem: I need to intercept the address IP of the p.cs. connected via telnet to the Unix system. Particularly, I have to know the... (2 Replies)
Discussion started by: paololrp
2 Replies

9. UNIX for Advanced & Expert Users

Host IP address for a telnet session

I am using Tru64UX 5.1a on alphaserver 4100. Users access the application through Telnet sessions to this server. My requirement is to limit the users login through their PCs only. Is there any way I can accomplish this on the unix box ? I want to include a script in the .profile ( or... (1 Reply)
Discussion started by: shauche
1 Replies

10. Programming

Find the IP address that a telnet session uses

Hello Experts, Happy New Year to all of us, In AIX 4.3.3 I am trying to figure out how is possible to find out the IP address that a telnet session - user uses to login in to host machine. My objective is by finding the login IP address to allow the user to login or not. All users uses the... (6 Replies)
Discussion started by: sszago
6 Replies
Login or Register to Ask a Question
Apache::Session::Postgres(3pm)				User Contributed Perl Documentation			    Apache::Session::Postgres(3pm)

NAME
Apache::Session::Postgres - An implementation of Apache::Session SYNOPSIS
use Apache::Session::Postgres; #if you want Apache::Session to open new DB handles: tie %hash, 'Apache::Session::Postgres', $id, { DataSource => 'dbi:Pg:dbname=sessions', UserName => $db_user, Password => $db_pass, Commit => 1 }; #or, if your handles are already opened: tie %hash, 'Apache::Session::Postgres', $id, { Handle => $dbh, Commit => 1 }; DESCRIPTION
This module is an implementation of Apache::Session. It uses the Postgres backing store and no locking. See the example, and the documentation for Apache::Session::Store::Postgres for more details. USAGE
The special Apache::Session argument for this module is Commit. You MUST provide the Commit argument, which instructs this module to either commit the transaction when it is finished, or to simply do nothing. This feature is provided so that this module will not have adverse interactions with your local transaction policy, nor your local database handle caching policy. The argument is mandatory in order to make you think about this problem. AUTHOR
This module was written by Jeffrey William Baker <jwbaker@acm.org>. SEE ALSO
Apache::Session::File, Apache::Session::Flex, Apache::Session::DB_File, Apache::Session::Postgres, Apache::Session perl v5.10.1 2010-10-18 Apache::Session::Postgres(3pm)