Version 1 (modified by 9 years ago) ( diff ) | ,
---|
OpenSpecimen Gotchas liquibase: Waiting for changelog lock
Tags: OpenSpecimen Summary Gotchas_Category
Diagnosis
- OpenSpecimen will not start.
- Check the
catalina.out
file in the error - usually in/local/{Open Specimen Directory}/app/logs/
. - If you see lots of lines saying
liquibase: Waiting for changelog lock....
.
Resolution
- Log onto the database in MySQL
SELECT * FROM DATABASECHANGELOGLOCK;
- there should be one row with a value of 1 for thelocked
column and the details of the lock.- To clear the lock run
UPDATE DATABASECHANGELOGLOCK SET LOCKED=FALSE, LOCKGRANTED=null, LOCKEDBY=null where ID=1;
Note:
See TracWiki
for help on using the wiki.