Changes between Initial Version and Version 1 of OpenSpecimen Gotchas liquibase: Waiting for changelog lock


Ignore:
Timestamp:
02/18/16 16:59:26 (8 years ago)
Author:
Richard Bramley
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenSpecimen Gotchas liquibase: Waiting for changelog lock

    v1 v1  
     1= OpenSpecimen Gotchas liquibase: Waiting for changelog lock
     2
     3Tags: [[OpenSpecimen Summary]] [[Gotchas_Category]]
     4
     5== Diagnosis
     6
     71. OpenSpecimen will not start.
     82. Check the {{{catalina.out}}} file in the error - usually in {{{/local/{Open Specimen Directory}/app/logs/}}}.
     93. If you see lots of lines saying `liquibase: Waiting for changelog lock....`.
     10
     11== Resolution
     12
     131. Log onto the database in MySQL
     142. `SELECT * FROM DATABASECHANGELOGLOCK;` - there should be one row with a value of 1 for the `locked` column and the details of the lock.
     153. To clear the lock run `UPDATE DATABASECHANGELOGLOCK SET LOCKED=FALSE, LOCKGRANTED=null, LOCKEDBY=null where ID=1;`
     16
     17[[BackLinks]]