user106104
user106104

Reputation: 21

SVN in Linux using Active Directory

We are currently trying to setup a svn server that will require authentication with AD. I have found many articles online talking about this but most are using apache to handle the AD authentication. Are there any howto's when using the svn protocol instead of apache?

We are using the svnserver that comes with subversion module.

We are not wanting to change the servers authentication method to use AD, just svn.

Upvotes: 2

Views: 8105

Answers (1)

tjdett
tjdett

Reputation: 1723

From svnbook:

If you need to integrate with existing legacy identity systems (LDAP, Active Directory, NTLM, X.509, etc.), you must use either the Apache-based server or svnserve configured with SASL."

So I'm guessing you want to configure svnserve with SASL.

This has been asked before: SVN + SASL + ActiveDirectory: How to

Upvotes: 4

Related Questions