Author |
|
nagella
Joined: 28 Nov 2011 Posts: 27 Location: Pune
|
Posted: Sun 08 Jan '12 20:56 Post subject: It is opening the popup for entering the credentials once ag |
|
|
Configured SSL Successfully.It is opening the popup for entering the credentials once credentials are entered it asks for the same again. |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Mon 09 Jan '12 12:30 Post subject: |
|
|
Usually OpenSSL does not ask for credentials. Config details would help a lot |
|
Back to top |
|
nagella
Joined: 28 Nov 2011 Posts: 27 Location: Pune
|
Posted: Mon 09 Jan '12 13:06 Post subject: |
|
|
httpd.conf
LoadModule auth_basic_module modules/mod_auth_basic.so
<Directory />
# Options FollowSymLinks
Options Indexes MultiViews FollowSymLinks
AllowOverride all
Order deny,allow
Deny from all
</Directory>
<IfModule !mod_auth_sspi.c>
LoadModule sspi_auth_module modules/mod_auth_sspi.so
</IfModule>
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>
These are the configuration made..Can you please suggest.. |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Mon 09 Jan '12 15:59 Post subject: |
|
|
You posted the wrong <Directory> block, we need to see the one from the Document root.
Ok you are using mod sspi. So what is the config? |
|
Back to top |
|
nagella
Joined: 28 Nov 2011 Posts: 27 Location: Pune
|
Posted: Mon 09 Jan '12 16:49 Post subject: |
|
|
<IfModule mod_auth_sspi.c>
AuthName "techtime.XXXX.com"
AuthType SSPI
SSPIAuth On
SSPIAuthoritative On
SSPIOfferBasic On
SSPIBasicPreferred On
#SSPIUsernameCase lower
SSPIDomain domain.com
require valid-user
</IfModule>
Need help in Apache 2.2.21 configuration with SSL.
I have done the SSL configurations (as per suggestions) - Logfiles details:
However it doesn't ssems to be working, below is the error that I am encountering:
[Mon Jan 09 19:35:53 2012] [error] [client 144.36.226.133] (OS 1326)Logon failure: unknown user name or bad password. : authentication failure for "/": user unknown
[Mon Jan 09 19:36:04 2012] [error] [client 144.36.226.133] (OS 1326)Logon failure: unknown user name or bad password. : user dir\\maheswar.n.reddy: authentication failure for "/"
[Mon Jan 09 19:36:09 2012] [error] [client 144.36.226.133] (OS 1326)Logon failure: unknown user name or bad password. : authentication failure for "/favicon.ico": user unknown
[Mon Jan 09 19:36:09 2012] [error] [client 144.36.226.133] (OS 1326)Logon failure: unknown user name or bad password. : user dir\\maheswar.n.reddy: authentication failure for "/favicon.ico"
[Mon Jan 09 19:36:39 2012] [error] [client 144.36.226.133] (OS 1326)Logon failure: unknown user name or bad password. : user dir\\maheswar.n.reddy: authentication failure for "/"
[Mon Jan 09 19:36:48 2012] [error] [client 144.36.226.133] (OS 1326)Logon failure: unknown user name or bad password. : user accenture.com\\maheswar.n.reddy: authentication failure for "/"
[Mon Jan 09 19:36:58 2012] [error] [client 144.36.226.133] (OS 1326)Logon failure: unknown user name or bad password. : user accenture.com\\maheswar.n.reddy: authentication failure for "/"
Any help in this regard will be highly appreciated. |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Tue 10 Jan '12 16:17 Post subject: |
|
|
nagella wrote: |
Need help in Apache 2.2.21 configuration with SSL.
|
mod auth(entication) SSPI has nothing to do with SSL. SSL is for encrytion, not for authentication.
For me it works this way, even without a Domain Controller and also wirh Firefox
Code: |
<IfModule mod_auth_sspi.c>
<Location /protected/>
AuthName "A Protected Place"
AuthType SSPI
SSPIAuth On
SSPIAuthoritative On
SSPIOfferBasic On
SSPIBasicPreferred On
require valid-user
</Location>
</IfModule>
|
Are you using a domain controller? If yes, if the domain controller on the same machine? |
|
Back to top |
|
nagella
Joined: 28 Nov 2011 Posts: 27 Location: Pune
|
Posted: Tue 10 Jan '12 16:40 Post subject: |
|
|
Yes i am want to use domain controller because i want to authenticate dir domain users.
I am on CLOUD server , i am able to authenticate the
cloud users( means who is having credetials for cloud they are able to acces the site), but i want to authenticate the different
dir domain users , so i don't have idea how to authenticate the different domain users from my cloud.
I have credentials for DIR Domain user name ,password, ports are enabled and IP also i have.
but how to redirect to DIR Domain and authenticate. |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
|
Back to top |
|