How to fix Subversion lock error

EclipseSvnSubclipse

Eclipse Problem Overview


How do you fix the Subversion/Subclipse error "Attempted to lock an already-locked dir"?

Googling shows people routinely encounter this error, and the only solution I've seen posted is to run Subclipse's Team->Cleanup command. Unfortunately, I get this error when I run the Team->Cleanup command. Are there any other options?

Eclipse Solutions


Solution 1 - Eclipse

I had similar problem. Team->Refresh/Cleanup Solved my problem

Solution 2 - Eclipse

Error : Attempted to lock an already-locked dir svn: Working copy 'C:\work\myproject\workspaces\HPDP' locked.

Solution: Worked for me.

        Right-click on project-->Team-->Refresh/Cleanup

Solution 3 - Eclipse

I tried all suggestion from this thread but the only one that worked is:

  1. go to the folder on which the project locked folder is stored
  2. execute svn cleanup

Solution 4 - Eclipse

I get this too. I go to the directory (not in Eclipse) where the files are, go into the .svn dir and delete the file called lock.

Flip back to Eclipse and continue.

There is a similar question here https://stackoverflow.com/questions/528327/problems-commiting-file-to-svn-repository

Solution 5 - Eclipse

I solved this problem by doing these:

  1. Right click on your project.

  2. Click on Team

  3. Click Refresh/Cleaup

Solution 6 - Eclipse

Just Right Click on Project

  1. Click on Team

  2. Click Refresh/Cleaup

this will remove all the current lock files created by SVN

hope this will help !!!!

Solution 7 - Eclipse

After the same problem with "phantom lock" the only solution was:

  1. Disconnect the Project Eclipse->Team->Disconnect (select option to delete .svn folder)

  2. Than "reconnect" Eclipse->Team->SVN->Share Project. Ignore the warning about better do an checkout. After this all worked fine.

Cleanup and Restart was no solutions, also Scan Locks did not show anything.

Solution 8 - Eclipse

Old question, but none of the above solutions worked for me. What did work was to close eclipse, then using Tortoise, right click on the project in Windows Explorer and choose 'TortoiseSVN' -> 'Clean up', then just use the default checkboxed items (Clean up working copy status, include externals), then hit OK.

This cleaned up the folder, then I was able to update and commit files as normal.

Solution 9 - Eclipse

Using SVN 1.8, deleting lock file does not help (lock file does not exists).

Refresh/Cleanup did not solve either.

What did solve:

1) Backup your directory, just incase...
2) Team... Disconnect. Choose to remove .svn files
3) Add it again to SVN.

Note: In my case, error was due to loss of network connection during initial commit.

Solution 10 - Eclipse

We had the same repeating problem. It's a disaster. What can you do if cleanup and unlock does not help because there is no existing lock?

  1. Search the hidden .svn folder in your directory structure. It contains a wc.db file which is an sql lite file.
  2. Open it with an sql client, e.g. DBeaver. Add an sql lite connection to the dbeaver by selecting the wc.db file.
  3. Open the WC_LOCK table. You can see one or more rows that contains the URL which was mentioned in the phantom lock error window.
  4. Delete these rows from the table.
  5. Try to update your project from the repo.
  6. If you use more than 1 repo in 1 project (externals) another phantom lock may appear during the update. In this case repeat the process with that folder.

Solution 11 - Eclipse

svn help unlock

And find locker after all - lock isn't needed in most cases

Solution 12 - Eclipse

I have faced same problem. I solved this by Right click on project --->Team----> Refresh/cleanup

Solution 13 - Eclipse

We don't have an external SVN server. I was working on a PC with Windows 7 Enterprise, and I was using Eclipse subversion plugin as an SVN client. The problem in my case occurred when the commit of a file took to much time due to network problem that forced me to restart my PC.

After the restart I started getting this error: XXX file already locked.

The solution was to install (TortoiseSVN), right click on the SVN project folder --> TortoiseSVN --> cleanup.

I hope that this post would be a help to someone.

Solution 14 - Eclipse

use tortoise svn to cleanup with 'break write locks' option checked

Solution 15 - Eclipse

I tried recursively deleting all lock files, but that just resulted the error "Path is not a working copy". I ended up having to do Team->Disconnect and then Team->Share. Upon reconnect, it complained about existing .svn files, which it deleted. Now it seems to be working.

Solution 16 - Eclipse

I spent hours looking for a solution to the "Attempted to lock an already-locked dir" error I was receiving in IBM RAD. Finally, I guessed to type:

unlock <directory path>

in the RAD console and... volia I could finally syncronize my files!!

Solution 17 - Eclipse

Go to the metadata directory as below

your workspace>projectname>.metadata

inside this metada directory, there will be a lock file. Delete this lock file.

Restart eclipse and rebuild project. It worked for me !

Solution 18 - Eclipse

Subversion supports a command named "Cleanup"; it is used to release the locks on a projectenter image description here

Solution 19 - Eclipse

I solved a similar problem. SVN client gave me an error:

"svn: E200002: Failed to create new lock."

I tried everything including "Cleanup" and "Still Lock" but with no success. Then I solved the problem simply, I went to my svn server and deleted the locks folder:

at "c:/svn/my_repository/locks"

It turned out that there are broken files in it.

Solution 20 - Eclipse

Refresh/Cleanup did not work for me. What worked:

1) File -> Switch workspace - choose a different workspace
2) afterwards switch back to the original workspace

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionCerinView Question on Stackoverflow
Solution 1 - Eclipseuser3312309View Answer on Stackoverflow
Solution 2 - EclipseVijay BhattView Answer on Stackoverflow
Solution 3 - EclipseAndrea GirardiView Answer on Stackoverflow
Solution 4 - Eclipserobot-nofollowView Answer on Stackoverflow
Solution 5 - EclipseMhandroidView Answer on Stackoverflow
Solution 6 - EclipseAkitha_MJView Answer on Stackoverflow
Solution 7 - EclipseSkateScoutView Answer on Stackoverflow
Solution 8 - EclipseJustinView Answer on Stackoverflow
Solution 9 - EclipseCedric SimonView Answer on Stackoverflow
Solution 10 - EclipseSzabó ÁkosView Answer on Stackoverflow
Solution 11 - EclipseLazy BadgerView Answer on Stackoverflow
Solution 12 - Eclipseuser5650798View Answer on Stackoverflow
Solution 13 - EclipseThabet Al-AssadiView Answer on Stackoverflow
Solution 14 - EclipseShilpa RView Answer on Stackoverflow
Solution 15 - EclipseCerinView Answer on Stackoverflow
Solution 16 - EclipsesamwhocanView Answer on Stackoverflow
Solution 17 - Eclipsequick_coderView Answer on Stackoverflow
Solution 18 - EclipseBrajeshView Answer on Stackoverflow
Solution 19 - EclipseDartFNMView Answer on Stackoverflow
Solution 20 - EclipseRaluca PreislerView Answer on Stackoverflow