running version 5.5.1 on windows 2012 server. server was rebooted and when I start the bitbucket service, it got stuck in "migrating home directory". been like this for several hours. What should I do?
Hi Victor, sound like https://community.atlassian.com/t5/Bitbucket-questions/Problem-with-bitbucket-startup/qaq-p/708444
Can you provide more details out of the log file (the whole stacktrace for example)
BR
Kurt
Not sure if it is the same issue but I fixed it buy doing an update on the database table.
UPDATE DATABASECHANGELOGLOCK SET LOCKED=0, LOCKGRANTED=null, LOCKEDBY=null where ID=1;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
me too, thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Worked for me as well! Many thanks Victor!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Worked for me too. Thanks! I was afraid I would need to re-install!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
BTW, on Bitbucket v5.15.0 and running on Postgres, had to use the following sql command:
UPDATE DATABASECHANGELOGLOCK SET LOCKED=False, LOCKGRANTED=null, LOCKEDBY=null where ID=1;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for that one SQL line: I've been stuck for over a day!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You save my day. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Same for me, unexpected lock and this fix worked well on the upgrade from 6.1.2 to 6.9.1 of our server. Just delivered the upgrade on time, ooooh. Thanks a lot.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Worked for Bitbucket 7.2.1 after a vmware snapshot left the database locked.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Rather than blindly updating this table, can someone explain why this occurred and why this fix is reasonable? At the surface, it feels like a band-aid fix that may have undesirable effects, but could have a completely reasonable explanation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Had to use false for the boolean.
UPDATE DATABASECHANGELOGLOCK SET LOCKED=false, LOCKGRANTED=null, LOCKEDBY=null where ID=1;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We had this issue during servers reboot (bitbucket 7.17.5 and PostgreSQL).
The errors was not clear in logs. Difficult to debug it.
Solved with the DATABASECHANGELOGLOCK update.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
after waiting for a very long time, finally got this error.
The following problem occurred, which prevents Atlassian Bitbucket from starting:
in the log
Error creating bean with name 'sharedHomeLockAcquirer' defined in class path resource [stash-context.xml]:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I got this error as well Victor. How did you resolve it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.