Setting SVN password passwords

I am installing SVN with Apache 2.2 on Windows 2003 everything seems to be good, but when I try to login the username / password does not work

Here is some information
I load this module in httpd.conf
Modules LoadModule auth_basic_module / mod_auth_basic.so

and in svnserv.conf I have [Generally]
Anonymous access = read
access authentication = write

password db = PASSWORD
AuthZ-db = AuthZ

in passwd file
[ Users]
harry = harry
outing = outing


what am i doing wrong or missing?

0


source to share


3 answers


I think the problem might be that you need to generate the password file using htpasswd . Storing unencrypted passwords is not good!



+2


source


Ok, this is not technically the answer to the question you asked, but you should try installing Visual SVN Server , which takes care of all these headaches for you. Setting up an SVN server is much easier with this tool on Windows than it is necessary to do it manually.



0


source


This is really not a forum for this type of question. You'd be better off #subversion at irc.freenode.net

0


source







All Articles