apache+svn+ldap集成

Posted 梦轻尘

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache+svn+ldap集成相关的知识,希望对你有一定的参考价值。

apache+svn搭建方式如下:http://www.cnblogs.com/uglyliu/p/6914056.html

SVN和ldap集成,我用的方式只需要更改 /etc/http/conf.d/subversion.conf

配置如下:

<Location /svn/>
        DAV svn
        SVNListParentPath on
        SVNParentPath /home/svndata
        AuthBasicAuthoritative on
        AuthType Basic
        AuthName "svn"
        AuthBasicProvider ldap
        AuthzLDAPAuthoritative    off
        AuthLDAPURL    "ldap://ldap ip:389/dc=自己设置,dc=com?uid?sub?(objectClass=*)"
        AuthLDAPBindDN "cn=manager,dc=自己设置,dc=com"
        AuthLDAPBindPassword "manager的密码"
        AuthzSVNAccessFile /etc/subversion/svn-authz.conf
        Require valid-user
</Location>

 

以上是关于apache+svn+ldap集成的主要内容,如果未能解决你的问题,请参考以下文章

svn 413 Request Entity Too Large 错误

ldap+ldap-account-manager+svn+apache+php做账号管理

ldap落地实战:gitlab集成openldap认证

如何将cloudera apache哨句与open ldap集成

Apache Ranger安装配置以及和LDAP集成

apache+svn 集成成功的时候