Following the tutorial here , I installed Subversion 1.5.6 (Setup-Subversion-1.5.6.msi here ) on Windows Server 2003 Service Pack 2 (SP2). I managed 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 does not start. I decided that I would try to start svnserve manually without the --service argument, but these are errors. I'm trying to:
svnserve -rc: \ svn \ repository
... and I get the error:
svn: Failed to initialize SASL library
svn: general failure
Other information that may be relevant: I edited the svnserve.conf file, uncommenting the anonymous access and authorization access strings:
anon-access = none
auth-access = write
I also uncommented the password-db line:
password-db = passwd
I registered in the field using Remote Desktop, and I am registered as an administrator on the server. Any ideas?
source
share