Changes between Version 157 and Version 158 of FAQ


Ignore:
Timestamp:
Mar 16, 2026, 7:33:23 AM (7 hours ago)
Author:
Bang Pham Huu
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v157 v158  
    358358''Solution:'' when redeploying rasdaman, make sure to ''restart Tomcat''. This is required because petascope uses a native library from GDAL; further information in the [https://cwiki.apache.org/confluence/display/tomcat/HowTo#HowTo-I'mencounteringclassloaderproblemswhenusingJNIunderTomcat Tomcat docs].
    359359
     360=== Petascope is stuck to start
     361
     362When you see in `petascope.log` with the last line below in a few minutes
     363
     364{{{
     365  INFO [2026-03-16 07:45:41] HikariDataSource@110: HikariPool-1 - Starting...
     366  INFO [2026-03-16 07:45:41] HikariDataSource@123: HikariPool-1 - Start completed.
     367  INFO [2026-03-16 07:45:42] HikariDataSource@110: HikariPool-2 - Starting...
     368  INFO [2026-03-16 07:45:42] HikariDataSource@123: HikariPool-2 - Start completed.
     369}}}
     370
     371then it can be an issue with liquibase (it thinks a migration crashed or didn’t finish, it leaves locked = true. Then no new migrations will run until it’s unlocked). Then, you need to fix it manually:
     372
     373{{{
     374sudo su - postgres
     375psql
     376\c petascopedb;
     377update databasechangeloglock set locked = false
     378
     379}}}
     380
     381then restart petascope (either via `sudo service tomcat9 restart` if external petascope or `sudo service rasdaman restart` if embedded petascope) and it should work again.
     382
     383
     384
     385
     386
    360387
    361388=== Modulor operation in WCPS ===