Hi!
I use OTRS 3.2.3 installed on Windows 2008R2 with SSO active.
If I access OTRS - Agent link single signon works perfect and loged me in with my current username (link: http://relatiiclienti/otrs/index.pl?).
But, if I click on a link from a notification e-mail recevied from OTRS (link: http://relatiiclienti.man.apabucur.ro/o ... cketID=472) the browser asks for username and password. You can see the attachment.
Do you have any idea what can I do?
Thanks a lot!
Single signon problem
Moderator: crythias
-
- Znuny newbie
- Posts: 37
- Joined: 31 Jan 2011, 11:25
- Znuny Version: 3.2.3
- Real Name: Dan
- Company: ANB
- Location: Bucharest, RO
Single signon problem
You do not have the required permissions to view the files attached to this post.
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: Single signon problem
sso needs to understand the FQDN. Make sure it's in your keytab.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
-
- Znuny newbie
- Posts: 37
- Joined: 31 Jan 2011, 11:25
- Znuny Version: 3.2.3
- Real Name: Dan
- Company: ANB
- Location: Bucharest, RO
Re: Single signon problem
You are right, it's from FQDN. But how can I resolve the problem? What should I change? I will show you below codes for sso:
Thanks a lot!
Code: Select all
In config.pm:
$Self->{'AuthModule'} = 'Kernel::System::Auth::HTTPBasicAuth';
$Self->{'AuthModule::HTTPBasicAuth::Replace'} = 'man\\';
# If you use this module, you should use as fallback
# the following configuration settings if the user is not authorized
# apache ($ENV{REMOTE_USER})
$Self->{LoginURL} = 'http://http://www.google.ro/';
# or a youtube vid of Rick Astley?
$Self->{LogoutURL} = 'http://http://www.google.ro/';
Code: Select all
In httpd.conf:
LoadModule sspi_auth_module modules/mod_auth_sspi.so
LoadModule headers_module modules/mod_headers.so
#<Directory />
# Options FollowSymLinks
# AllowOverride None
# Order deny,allow
#Deny from all
#</Directory>
<IfModule mod_auth_sspi.c>
<Directory "D:/OTRS/OTRS/bin/cgi-bin">
AuthType SSPI
SSPIAuth On
SSPIAuthoritative On
SSPIDomain mydomain.com
SSPIUsernameCase lower
SSPIOfferBasic On
SSPIOmitDomain on
Require valid-user
AllowOverride None
Options +ExecCGI -Includes
Order allow,deny
Allow from all
</Directory>
</IfModule>
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: Single signon problem
Start here
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask