Add notes for 2019-02-17

This commit is contained in:
2019-02-17 13:16:36 +02:00
parent 6366cf9bb3
commit 3eb69e79fe
3 changed files with 50 additions and 8 deletions

View File

@ -739,4 +739,23 @@ $ podman start artifactory
- More on the [subuid permissions issue with rootless containers here](https://podman.io/blogs/2018/10/03/podman-remove-content-homedir.html)
## 2019-02-17
- I ran DSpace's cleanup task on CGSpace (linode18) and there were errors:
```
$ dspace cleanup -v
Error: ERROR: update or delete on table "bitstream" violates foreign key constraint "bundle_primary_bitstream_id_fkey" on table "bundle"
Detail: Key (bitstream_id)=(162844) is still referenced from table "bundle".
```
- The solution is, as always:
```
$ psql dspace -c 'update bundle set primary_bitstream_id=NULL where primary_bitstream_id in (162844);'
UPDATE 1
```
- I merged the Atmire Metadata Quality Module (MQM) changes to the `5_x-prod` branch and deployed it on CGSpace ([#407](https://github.com/ilri/DSpace/pull/407))
- Then I ran all system updates on CGSpace server and rebooted it
<!-- vim: set sw=2 ts=2: -->