Oct
30
2009
30
2009
sso Implementation in linux
Steps needs to follow to implement sso in our server (Linux)  : 1. Needs to download ntlm package for our corresponding server version. 2. Install or upload the ntlm.so file in apache module folder. 3. Needs to enable the ntlm module in apache configuration file for load the module. 4. Needs to add some few configuration for  ntlm (domain name,domain controller name and domain backup controller name) and also needs to set the authentication type as ntlm. Sample sso implementation.
- 1. downloaded ntlm file from the sourceforge site [mod_ntlm.so].
- 2. Uploaded that file in our web server. Which is located in /etc/httpd/modules/
- 3. Then we needs to enable the ntlm module in apache configuration file. Which is located in /etc/httpd/conf/
- 4. Syntax for enable the module “LoadModule ntlm_module modules/mod_ntlm.so.
- 5. We needs to configure domain name ,domain controller name and domain backup controller name. AuthName NTAuth
AuthType NTLM
NTLMAuth on
NTLMAuthoritative on
NTLMDomain sample domain NTLMServer sample domain controller name NTLMBackup sample domain backup controller name Require valid-user - 6. We needs to overwrite our own domain controller name,domain backup name
- 7. Finally, we need to restart our apache server.
- 8. After that we need to check, ntlm authentication is enabled or not using phpinfo.

An article by admin




