mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2025-01-27 05:49:12 +01:00
Add notes for 2023-06-06
This commit is contained in:
@ -25,11 +25,29 @@ categories: ["Notes"]
|
||||
```
|
||||
|
||||
- In [2022-11]({{< relref "2022-11.md" >}}) an upstream Java update broke the DSpace 6 Handle server so we will have to pin this again after the upgrade to Ubuntu 22.04
|
||||
- After the upgrade I made sure CGSpace was working, then proceeded to upgrade PostgreSQL from 12 to 14, like I did on DSpace Test in 2023-03
|
||||
- After the upgrade I made sure CGSpace was working, then proceeded to upgrade PostgreSQL from 12 to 14, like I did on [DSpace Test in 2023-03]({{< relref "2023-03.md" >}})
|
||||
- Then I had to downgrade OpenJDK to fix the Handle server using the ones I had previously downloaded for Ubuntu 20.04 because they no longer exist on Launchpad:
|
||||
|
||||
```console
|
||||
# dpkg -i openjdk-8-j*8u342-b07*.deb
|
||||
```
|
||||
|
||||
- Export CGSpace to fix missing Initiative collection mappings
|
||||
- Start a harvest on AReS
|
||||
- Work on the DSpace 7 migration a bit more
|
||||
- I decided to rebase and drop all the submission form edits because they conflict every time upstream changes!
|
||||
|
||||
## 2023-06-06
|
||||
|
||||
- Fix some incorrect ORCID identifiers for an Alliance author on CGSpace
|
||||
- Export our list of ORCID identifiers, resolve them, and update the records in CGSpace:
|
||||
|
||||
```console
|
||||
$ cat dspace/config/controlled-vocabularies/cg-creator-identifier.xml 2022-09-22-add-orcids.csv| grep -oE '[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{4}' | sort -u > /tmp/2023-06-06-orcids.txt
|
||||
$ ./ilri/resolve_orcids.py -i /tmp/2023-06-06-orcids.txt -o /tmp/2023-06-06-orcids-names.txt -d
|
||||
$ ./ilri/update_orcids.py -i /tmp/2023-06-06-orcids-names.txt -db dspacetest -u dspace -p 'ffff' -m 247
|
||||
```
|
||||
|
||||
- Start working on updating the MODS schema in CGSpace from 3.1 to 3.8 based on Stefano and Salem's work last year
|
||||
|
||||
<!-- vim: set sw=2 ts=2: -->
|
||||
|
Reference in New Issue
Block a user