3

Sorry for the beginner question. I am trying to set up a SVN server for the first time.

I have the server running but every time I try to checkout I get an error:

No access allowed to this repository

I was able to checkout when I set anon-access to read, but I always want authentication. Here are my config files:

svnserve.conf

[general]
anon-access = none
auth-access = rw
password-db = /home/svn/Blocks/conf/passwd
realm = Team

passwd

[users]
user = mypass

What could be wrong?

quanta
  • 52,423
Thomas
  • 31

1 Answers1

0

As far as i know, the auth-access options available are:

  1. none
  2. read
  3. write

There is no rw option, then try to update your svnserve.conf with auth-access write option.

Ivan
  • 196