|
Home > Archive > Netware Webserver > April 2006 > Authentication NDS with Apache2 y Novell 6.5
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Authentication NDS with Apache2 y Novell 6.5
|
|
| nieves 2006-04-08, 7:00 pm |
|
Good morning, I,m sorry for my english, I,m spanish
My problem is:
I,ve Novell 6.5 and apache2 2.0.54. I want use authentication with
NDS.
What module need for this?
AuthNDSTree and AuthNDSContext is correct in this version? With Novell
5 and apache 1.3 to work correctly.
This is a part of my httpd.conf:
<VirtualHost IP>
# ServerAdmin webmaster@host.some_domain.com
DocumentRoot "datos:/docs/datos"
ServerName datos.prueba.es
<Directory "/">
AuthName DATOS
AuthType Basic
AuthNDSTree ARBOL
AuthNDSContext .CONTEXTO.LM
require valid-user
</Directory>
ErrorLog logs/datos_error_log
CustomLog logs/datos_access_log common
</VirtualHost>
The error is: Invalid command AuthNDSTree perhaps mis-spelled or
defined by a module not included in the server configuration.
Please help. Thanks very much.
--
nieves
| |
| Automatic reply 2006-04-11, 7:58 am |
| nieves,
It appears that in the past few days you have not received a response to your
posting. That concerns us, and has triggered this automated reply.
Has your problem been resolved? If not, you might try one of the following options:
- Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
- Check all of the other support tools and options available at
http://support.novell.com.
- You could also try posting your message again. Make sure it is posted in the
correct newsgroup. (http://support.novell.com/forums)
Be sure to read the forum FAQ about what to expect in the way of responses:
http://support.novell.com/forums/faq_general.html
If this is a reply to a duplicate posting, please ignore and accept our apologies
and rest assured we will issue a stern reprimand to our posting bot.
Good luck!
Your Novell Product Support Forums Team
http://support.novell.com/forums/
| |
| Tommy Mikkelsen 2006-04-18, 12:00 am |
| You'll need to load the modules for both LDAP and eDir
Take a peek here:
http://www.novell.com/documentation.../documentation/
nw65/web_apache/data/ajouk03.html
--
Best Regards
Tommy Mikkelsen
IT Quality A/S
Denmark
Novell Support Forums SYSOP
Please Report back any success or failure, That way we all learn
Sorry, but no support through email
"I hate bugs".......Tommy Lee Jones, MIB
Be a GroupWiseR, go http://www.groupwiser.net
| |
| nieves 2006-04-20, 6:57 pm |
|
Thank you, but I need to access directly to NDS żit is possible with
mod_edir?
Tommy Mikkelsen Wrote:
> You'll need to load the modules for both LDAP and eDir
>
> Take a peek here:
>
> http://tinyurl.com/q4crt
> nw65/web_apache/data/ajouk03.html
>
>
> --
> Best Regards
>
> Tommy Mikkelsen
>
> IT Quality A/S
> Denmark
>
> Novell Support Forums SYSOP
>
> Please Report back any success or failure, That way we all learn
>
> Sorry, but no support through email
>
> "I hate bugs".......Tommy Lee Jones, MIB
>
> Be a GroupWiseR, go http://www.groupwiser.net
--
nieves
| |
| Tommy Mikkelsen 2006-04-20, 6:57 pm |
| Use mod_LDAP for a simple authentication against your eDir
Use the combined mod_LDAP and mod_eDir for controlling individual
filerights as well
--
Best Regards
Tommy Mikkelsen
IT Quality A/S
Denmark
Novell Support Forums SYSOP
Please Report back any success or failure, That way we all learn
Sorry, but no support through email
"I hate bugs".......Tommy Lee Jones, MIB
Be a GroupWiseR, go http://www.groupwiser.net
| |
| nieves 2006-04-24, 7:59 am |
|
Thanks Tommy but do you have an example of httpd.conf with a virtual
host with a context and a tree?.
I have mod_ldap and mod_eDir.
Thanks
Tommy Mikkelsen Wrote:
> Use mod_LDAP for a simple authentication against your eDir
> Use the combined mod_LDAP and mod_eDir for controlling individual
> filerights as well
>
>
> --
> Best Regards
>
> Tommy Mikkelsen
>
> IT Quality A/S
> Denmark
>
> Novell Support Forums SYSOP
>
> Please Report back any success or failure, That way we all learn
>
> Sorry, but no support through email
>
> "I hate bugs".......Tommy Lee Jones, MIB
>
> Be a GroupWiseR, go http://www.groupwiser.net
--
nieves
| |
| Tommy Mikkelsen 2006-04-24, 7:59 am |
| #
# This is a sample config for mod_edir.
# Read ./manual/mod/mod_auth_ldap.html for the complete auth_ldap
documentation.
# For detailed information about mod_edir config read the html
documentation.
# Remote dir support is turned off here because it requires further
configuration!
#
<IfModule !util_ldap.c>
LoadModule ldap_module modules/utilldap.nlm
</IfModule>
<IfModule util_ldap.c>
<IfModule !mod_auth_ldap.c>
LoadModule auth_ldap_module modules/authldap.nlm
</IfModule>
<Location /ldap-status>
SetHandler ldap-status
</Location>
# AuthLDAPRemoteUserIsDN On
<IfModule !mod_edir.c>
LoadModule edir_module modules/mod_edir.nlm
</IfModule>
# eDirShowComponent On
RemoteDirEnabled Off
Alias /secure sys:/webpages/secure
<Directory sys:/webpages/secure>
Order deny,allow
Allow from all
AuthType Basic
AuthName "eDir Protected Site"
# you can use unencrypted communication if the LDAP server runs on
the same machine.
AuthLDAPURL ldap://my.ldap.server/o=my_context?cn
# if you have to access a remote LDAP server it is recommended to
use SSL.
# AuthLDAPURL ldaps://my.ldap.server/o=my_context?cn
require edir-user
</Directory>
</IfModule>
Above will secure everything below /secure
--
Best Regards
Tommy Mikkelsen
IT Quality A/S
Denmark
Novell Support Forums SYSOP
Please Report back any success or failure, That way we all learn
Sorry, but no support through email
"I hate bugs".......Tommy Lee Jones, MIB
Be a GroupWiseR, go http://www.groupwiser.net
|
|
|
|
|