|
|
@@ -66,6 +66,14 @@ Check if database runs:
|
|
|
$ docker network inspect labkey_network
|
|
|
#find IP of DB (probably the same as before)
|
|
|
$ psql -U postgres -h IP -p 5432 -f /data/labkey/postgresql/X/dumpX.sql
|
|
|
+#I found password of master account scrambled, so best to set it to value PGPASS from env.sh
|
|
|
+ $ psql -U postgres -h IP -p 5432
|
|
|
+ postgres=# ALTER USER postgres WITH PASSWORD 'PGPASS';
|
|
|
+ postgres=# quit
|
|
|
+ $ bin/stopLabkey.sh
|
|
|
+#Change permissions back to password; host all all all scram-sha-256 in pg_hba.conf
|
|
|
+ $ bin/startLabkey.sh
|
|
|
+#Should be running of the new base
|
|
|
```
|
|
|
|
|
|
### Files and external modules for LabKey
|