Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

E200033: Another process is blocking the working copy database

When I checkout from repository

sudo svn co --username me http://192.168.1.27/svn/project

I got the this error and checkout process terminated

svn: E200033: Another process is blocking the working copy database, or the underlying filesystem does not support file locking; if the working copy is on a network filesystem, make sure file locking has been enabled on the file server 
svn: E200033: sqlite[S5]: database is locked 
svn: E200042: Additional errors: 
svn: E200033: sqlite[S5]: database is locked 

I am unable to get checkout or update for this project (no cleanup, update, etc command working after getting error).

like image 894
Ravee Sunshine Avatar asked Jan 21 '26 00:01

Ravee Sunshine


1 Answers

Follow the below steps:

 $ cd /my/repository/.svn 
 $ mv wc.db wc.db.old 
 $ sqlite3 wc.db.old 
 sqlite> .backup main wc.db
 sqlite> .exit

Afterwards, do a svn cleanup. 

svn: database is locked, executing statement 'RELEASE s0'

like image 172
Mohd Bashir Avatar answered Jan 22 '26 14:01

Mohd Bashir



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!