Following the tutorial here, I installed Subversion 1.5.6 (Setup-Subversion-1.5.6.msi here) on Windows Server 2003 SP2. I was able to create a repository (C:\SVN\Repository) using the command line, no problem. And I can configure it as a service, but when I try to start the service, it won't start. I figured I would try to run svnserve manually without the --service argument, but it errors. I am trying:
svnserve -r c:\svn\repository
...and the error I get is:
svn: Could not initialize the SASL library
svn: generic failure
Other Information that might be pertinent: I edited the svnserve.conf file by uncommenting the anon-access and auth-access lines:
anon-access = none
auth-access = write
I also uncommented the password-db line:
password-db = passwd
I am logged into the box using remote desktop, and I am logged in as an administrator on the server. Any ideas?