mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2025-01-27 05:49:12 +01:00
Add notes for 2016-12-18
This commit is contained in:
@ -595,3 +595,38 @@ Caused by: java.lang.NoSuchMethodError: com.atmire.statistics.generator.DSpaceOb
|
||||
|
||||

|
||||

|
||||
|
||||
## 2016-12-18
|
||||
|
||||
- Add four new CRP subjects for 2017 and sort the input forms alphabetically ([#294](https://github.com/ilri/DSpace/pull/294))
|
||||
- Test the SMTP on the new server and it's working
|
||||
- Last week, when we asked CGNET to update the DNS records this weekend, they misunderstood and did it immediately
|
||||
- We quickly told them to undo it, but I just realized they didn't undo the IPv6 AAAA record!
|
||||
- None of our users in African institutes will have IPv6, but some Europeans might, so I need to check if any submissions have been added since then
|
||||
- Update some names and authorities in the database:
|
||||
|
||||
```
|
||||
dspace=# update metadatavalue set authority='5ff35043-942e-4d0a-b377-4daed6e3c1a3', confidence=600, text_value='Duncan, Alan' where resource_type_id=2 and metadata_field_id=3 and text_value ~ '^.*Duncan,? A.*';
|
||||
UPDATE 204
|
||||
dspace=# update metadatavalue set authority='46804b53-ea30-4a85-9ccf-b79a35816fa9', confidence=600, text_value='Mekonnen, Kindu' where resource_type_id=2 and metadata_field_id=3 and text_value like '%Mekonnen, K%';
|
||||
UPDATE 89
|
||||
dspace=# update metadatavalue set authority='f840da02-26e7-4a74-b7ba-3e2b723f3684', confidence=600, text_value='Lukuyu, Ben A.' where resource_type_id=2 and metadata_field_id=3 and text_value like '%Lukuyu, B%';
|
||||
UPDATE 140
|
||||
```
|
||||
|
||||
- Generated a new UUID for Ben using `uuidgen | tr [A-Z] [a-z]` as the one in Solr had his ORCID but the name format was incorrect
|
||||
- In theory DSpace should be able to check names from ORCID and update the records in the database, but I find that this doesn't work (see Jira bug [DS-3302](https://jira.duraspace.org/browse/DS-3302))
|
||||
- I need to run these updates along with the other one for CIAT that I found last week
|
||||
- Enable OCSP stapling for hosts >= Ubuntu 16.04 in our Ansible playbooks ([#76](https://github.com/ilri/rmg-ansible-public/pull/76))
|
||||
- Working for DSpace Test on the second response:
|
||||
|
||||
```
|
||||
$ openssl s_client -connect dspacetest.cgiar.org:443 -servername dspacetest.cgiar.org -tls1_2 -tlsextdebug -status
|
||||
...
|
||||
OCSP response: no response sent
|
||||
$ openssl s_client -connect dspacetest.cgiar.org:443 -servername dspacetest.cgiar.org -tls1_2 -tlsextdebug -status
|
||||
...
|
||||
OCSP Response Data:
|
||||
...
|
||||
Cert Status: good
|
||||
```
|
||||
|
Reference in New Issue
Block a user