svnserver in linux option expected

linux, svn

Solution

When we uncomment parameters in `svnserve.conf` during svn server configuration , it leaves a whitespace character before the parameter. Just remove the whitespace character from the parameters you uncommented in `svnserve.conf`

anon-access = read
auth-access = write

This should resolve the issue.

Problem

I am configuring a svn server, but when i try to make a checkout, the prompt shows this error: ``` svn: E200002: Unable to connect to a repository at URL 'svn://localhost/heartview' svn: E200002: /home/factory/svn/repository/heartview/conf/svnserve.conf:20: Option Expected ``` my svnserver.conf file says: ``` [general] line 20 :anon-access = read line 21 :auth-access = write ```

Original source