I have just set up svn on my ubuntu server. I have a my user I can login to. The problem is that whenever I try to make a change on the file structure I get a permission denied error.

Can't open file '/var/www-svn/db/txn-current-lock':
Permission denied

My repo is in /var/www-svn and the permission on that folder is drwxr-xr-x for user AND group svn (I am bad with permissions so I don't know if that's correct). My user that I log in to on svn is in the svn group, yet I cant change the file structure. What am I doing wrong? It works if I change the user and group of the folder to my user that I login too.

In svnserve.conf, anon-access is set to none and auth-access is set to write.

(I changed the owner of /var/www-svn by typing sudo chown -R svn:svn www-svn inside /var directory.)

link|improve this question

How are you accessing the repo (svn, http, file, etc..)? – prodigitalson Dec 10 '11 at 18:54
svn (using TortoiseSVN Repo Browser). – Marwelln Dec 10 '11 at 18:56
Well what does your config for access/auth (svnserve.conf) look like? – prodigitalson Dec 10 '11 at 18:57
I've updated my post about that. – Marwelln Dec 10 '11 at 19:05
Have you configured the users? svnbook.red-bean.com/en/1.0/svn-book.html#svn-ch-6-sect-3.2 – prodigitalson Dec 10 '11 at 19:07
show 1 more comment
feedback

3 Answers

It seems a question for superuser.com. At first sight, group svn doesn't have write permission on that folder. So maybe is this the problem. Take a look at this http://www.svnforum.org/threads/35493-Can-t-open-db-txn-current-lock-permission-denied

link|improve this answer
Try: chmod -R 770 /var/www-svn/ – Simone-Cu Dec 10 '11 at 19:59
feedback

You have to add the SETUID bit for the /var/www-svn/ folder, cause under transactions there will be folders generated during the run of SVN for preserving transactions which are represented by folders.

This means in short words just make

chmod +s -R /var/www-svn/

should solve the problem.

link|improve this answer
I just ran that command, but same error occoured. – Marwelln Dec 10 '11 at 19:16
feedback
up vote 0 down vote accepted

The svnserve deamon ran under my user, not as root. I killed the svnserve processes running under my user and restarted it as root. It now works.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.