5

I have a Ubuntu machine acting as a subversion server via an svnserve daemon (as root) in my private network. The svnserve daemon reads from a mounted SMB share that is on our raid setup. I can access the server from my various SVN clients just fine. I can also commit changes without problem, except that after each commit, I get the following error:

post-commit FS processing had error 'database is locked'.

Commits succeed, so I can use the system, but this error is annoying and troubling. I've tried seaching for a solution and not had much luck.

Is anyone able to help me fix this error?

2
  • (1) Are you using the same subversion version on both server & client? (2) Are server & client very far geographically? (3) Is it possible that another long commit is in progress?
    – harrymc
    Commented May 7, 2013 at 14:20
  • Does running svn cleanup help?
    – snapshoe
    Commented May 14, 2013 at 1:41

1 Answer 1

1

Adding the nobrl mount option might help. This disables byte-range locks.

4
  • 1
    This does not provide an answer to the question. Once you have sufficient reputation you will be able to comment on any post; instead, provide answers that don't require clarification from the asker. - From Review
    – Burgi
    Commented May 14, 2021 at 10:55
  • @Burgi why does this not answer the question? I had the same problem and it helped.
    – vision
    Commented May 14, 2021 at 14:09
  • 1
    @vision - You indicated adding the option might help, which sounds like you are submitting a comment/suggest, instead of answering the author's question.
    – Ramhound
    Commented May 15, 2021 at 20:31
  • Adding "nobrl" performs the following on SMB/CIFS mounts : Do not send byte range lock requests to the server. This is necessary for certain applications that break with cifs style mandatory byte range locks (and most cifs servers do not yet support requesting advisory byte range locks). Commented May 25, 2023 at 2:44

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .