mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2025-01-27 05:49:12 +01:00
Add notes for 2020-11-17
This commit is contained in:
parent
a50ad3ac76
commit
d7a6467475
@ -259,4 +259,97 @@ org.apache.solr.client.solrj.impl.HttpSolrServer$RemoteSolrException: Error whil
|
||||
at org.dspace.app.launcher.ScriptLauncher.main(ScriptLauncher.java:81)
|
||||
```
|
||||
|
||||
## 2020-11-16
|
||||
|
||||
- Users are having issues submitting items to CGSpace
|
||||
- Looking at the data I see that connections skyrocketed since DSpace 6 upgrade yesterday, and they are all in "waiting for lock" state:
|
||||
|
||||

|
||||

|
||||
|
||||
- There are almost 1,500 locks:
|
||||
|
||||
```
|
||||
$ psql -c 'SELECT * FROM pg_locks pl LEFT JOIN pg_stat_activity psa ON pl.pid = psa.pid;' | wc -l
|
||||
1494
|
||||
```
|
||||
|
||||
- I sent a mail to the dspace-tech mailing list to ask for help...
|
||||
- For now I just restarted PostgreSQL and a few users were able to complete submissions...
|
||||
- While processing the statistics-2018 Solr core I got the *same* memory error that I have gotten every time I processed this core in testing:
|
||||
|
||||
```
|
||||
Exception: Java heap space
|
||||
java.lang.OutOfMemoryError: Java heap space
|
||||
at java.util.Arrays.copyOf(Arrays.java:3332)
|
||||
at java.lang.AbstractStringBuilder.ensureCapacityInternal(AbstractStringBuilder.java:124)
|
||||
at java.lang.AbstractStringBuilder.append(AbstractStringBuilder.java:448)
|
||||
at java.lang.StringBuffer.append(StringBuffer.java:270)
|
||||
at java.io.StringWriter.write(StringWriter.java:101)
|
||||
at org.apache.solr.common.util.XML.writeXML(XML.java:133)
|
||||
at org.apache.solr.client.solrj.util.ClientUtils.writeVal(SourceFile:160)
|
||||
at org.apache.solr.client.solrj.util.ClientUtils.writeXML(SourceFile:128)
|
||||
at org.apache.solr.client.solrj.request.UpdateRequest.writeXML(UpdateRequest.java:365)
|
||||
at org.apache.solr.client.solrj.request.UpdateRequest.getXML(UpdateRequest.java:281)
|
||||
at org.apache.solr.client.solrj.request.RequestWriter.getContentStream(RequestWriter.java:67)
|
||||
at org.apache.solr.client.solrj.request.RequestWriter$LazyContentStream.getDelegate(RequestWriter.java:95)
|
||||
at org.apache.solr.client.solrj.request.RequestWriter$LazyContentStream.getName(RequestWriter.java:105)
|
||||
at org.apache.solr.client.solrj.impl.HttpSolrServer.createMethod(HttpSolrServer.java:302)
|
||||
at org.apache.solr.client.solrj.impl.HttpSolrServer.request(HttpSolrServer.java:210)
|
||||
at org.apache.solr.client.solrj.impl.HttpSolrServer.request(HttpSolrServer.java:206)
|
||||
at org.apache.solr.client.solrj.request.AbstractUpdateRequest.process(AbstractUpdateRequest.java:124)
|
||||
at org.apache.solr.client.solrj.SolrServer.add(SolrServer.java:68)
|
||||
at org.apache.solr.client.solrj.SolrServer.add(SolrServer.java:54)
|
||||
at org.dspace.util.SolrUpgradePre6xStatistics.batchUpdateStats(SolrUpgradePre6xStatistics.java:161)
|
||||
at org.dspace.util.SolrUpgradePre6xStatistics.run(SolrUpgradePre6xStatistics.java:456)
|
||||
at org.dspace.util.SolrUpgradePre6xStatistics.main(SolrUpgradePre6xStatistics.java:365)
|
||||
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
|
||||
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
|
||||
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
|
||||
at java.lang.reflect.Method.invoke(Method.java:498)
|
||||
at org.dspace.app.launcher.ScriptLauncher.runOneCommand(ScriptLauncher.java:229)
|
||||
at org.dspace.app.launcher.ScriptLauncher.main(ScriptLauncher.java:81)
|
||||
```
|
||||
|
||||
- I increased the Java heap memory to 4096MB and restarted the processing
|
||||
- After a few hours I got the following error, which I have gotten several times over the last few months:
|
||||
|
||||
```
|
||||
Exception: Error while creating field 'p_group_id{type=uuid,properties=indexed,stored,multiValued}' from value '10'
|
||||
org.apache.solr.client.solrj.impl.HttpSolrServer$RemoteSolrException: Error while creating field 'p_group_id{type=uuid,properties=indexed,stored,multiValued}' from value '10'
|
||||
at org.apache.solr.client.solrj.impl.HttpSolrServer.executeMethod(HttpSolrServer.java:552)
|
||||
at org.apache.solr.client.solrj.impl.HttpSolrServer.request(HttpSolrServer.java:210)
|
||||
at org.apache.solr.client.solrj.impl.HttpSolrServer.request(HttpSolrServer.java:206)
|
||||
at org.apache.solr.client.solrj.request.AbstractUpdateRequest.process(AbstractUpdateRequest.java:124)
|
||||
at org.apache.solr.client.solrj.SolrServer.add(SolrServer.java:68)
|
||||
at org.apache.solr.client.solrj.SolrServer.add(SolrServer.java:54)
|
||||
at org.dspace.util.SolrUpgradePre6xStatistics.batchUpdateStats(SolrUpgradePre6xStatistics.java:161)
|
||||
at org.dspace.util.SolrUpgradePre6xStatistics.run(SolrUpgradePre6xStatistics.java:456)
|
||||
at org.dspace.util.SolrUpgradePre6xStatistics.main(SolrUpgradePre6xStatistics.java:365)
|
||||
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
|
||||
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
|
||||
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
|
||||
at java.lang.reflect.Method.invoke(Method.java:498)
|
||||
at org.dspace.app.launcher.ScriptLauncher.runOneCommand(ScriptLauncher.java:229)
|
||||
at org.dspace.app.launcher.ScriptLauncher.main(ScriptLauncher.java:81)
|
||||
```
|
||||
|
||||
## 2020-11-17
|
||||
|
||||
- Chat with Peter about using some remaining CRP Livestock open access money to fund more work on OpenRXV / AReS
|
||||
- I will create GitHub issues for each of the things we talked about and then create ToRs to send to CodeObia for a quote
|
||||
- Continue migrating Solr statistics to DSpace 6 UUID format after the upgrade on Sunday
|
||||
- Regarding the IWMI issue about flagships and strategic priorities we can use CRP Livestock as an example because all their [flagships are mapped to collections](https://cgspace.cgiar.org/handle/10568/80102)
|
||||
- Database issues are worse today...
|
||||
|
||||

|
||||

|
||||
|
||||
- There are over 2,000 locks:
|
||||
|
||||
```
|
||||
$ psql -c 'SELECT * FROM pg_locks pl LEFT JOIN pg_stat_activity psa ON pl.pid = psa.pid;' | wc -l
|
||||
2071
|
||||
```
|
||||
|
||||
<!-- vim: set sw=2 ts=2: -->
|
||||
|
294
content/posts/cgspace-dspace6-upgrade.md
Normal file
294
content/posts/cgspace-dspace6-upgrade.md
Normal file
@ -0,0 +1,294 @@
|
||||
+++
|
||||
title = "CGSpace DSpace 6 Upgrade"
|
||||
date = 2020-11-15T13:27:35+02:00
|
||||
description = "Documenting the DSpace 6 upgrade."
|
||||
categories = ["Notes"]
|
||||
tags = ["Migration"]
|
||||
url = "cgspace-dspace6-upgrade"
|
||||
+++
|
||||
|
||||
Notes about the DSpace 6 upgrade on CGSpace in 2020-11.
|
||||
|
||||
<!--more-->
|
||||
|
||||
- [Processing Solr Statistics With solr-upgrade-statistics-6x](#processing-solr-statistics-with-solr-upgrade-statistics-6x)
|
||||
- [Current year's statistics core](#statistics)
|
||||
- [statistics-2019 core](#statistics-2019)
|
||||
- [statistics-2018 core](#statistics-2018)
|
||||
- [statistics-2017 core](#statistics-2017)
|
||||
- [statistics-2016 core](#statistics-2016)
|
||||
- [statistics-2015 core](#statistics-2015)
|
||||
- [statistics-2014 core](#statistics-2014)
|
||||
- [statistics-2013 core](#statistics-2013)
|
||||
|
||||
## Processing Solr Statistics With solr-upgrade-statistics-6x
|
||||
After the main upgrade process was finished and DSpace was running I started processing the Solr statistics with `solr-upgrade-statistics-6x` to migrate all IDs to UUIDs.
|
||||
|
||||
### statistics
|
||||
First process the current year's statistics core:
|
||||
|
||||
```console
|
||||
$ export JAVA_OPTS='-Dfile.encoding=UTF-8 -Xmx2048m'
|
||||
$ chrt -b 0 dspace solr-upgrade-statistics-6x -n 2500000 -i statistics
|
||||
...
|
||||
=================================================================
|
||||
*** Statistics Records with Legacy Id ***
|
||||
|
||||
3,817,407 Bistream View
|
||||
1,693,443 Item View
|
||||
105,974 Collection View
|
||||
62,383 Community View
|
||||
163,192 Community Search
|
||||
162,581 Collection Search
|
||||
470,288 Unexpected Type & Full Site
|
||||
--------------------------------------
|
||||
6,475,268 TOTAL
|
||||
=================================================================
|
||||
```
|
||||
|
||||
After several rounds of processing it finished. Here are some statistics about unmigrated documents:
|
||||
|
||||
- 227,000: `(*:* NOT id:/.{36}/) AND (*:* NOT id:/.+-unmigrated/)`
|
||||
- 471,000: `id:/.+-unmigrated/`
|
||||
- 698,000: `*:* NOT id:/.{36}/`
|
||||
- Majority are `type: 5` (aka SITE, according to `Constants.java`) so we can purge them:
|
||||
|
||||
```console
|
||||
$ curl -s "http://localhost:8081/solr/statistics/update?softCommit=true" -H "Content-Type: text/xml" --data-binary "<delete><query>*:* NOT id:/.{36}/</query></delete>"
|
||||
```
|
||||
|
||||
### statistics-2019
|
||||
Processing the statistics-2019 core:
|
||||
|
||||
```console
|
||||
$ chrt -b 0 dspace solr-upgrade-statistics-6x -n 2500000 -i statistics
|
||||
...
|
||||
=================================================================
|
||||
*** Statistics Records with Legacy Id ***
|
||||
|
||||
5,569,344 Bistream View
|
||||
2,179,105 Item View
|
||||
117,194 Community View
|
||||
104,091 Collection View
|
||||
774,138 Community Search
|
||||
568,347 Collection Search
|
||||
1,482,620 Unexpected Type & Full Site
|
||||
--------------------------------------
|
||||
10,794,839 TOTAL
|
||||
=================================================================
|
||||
```
|
||||
|
||||
After several rounds of processing it finished. Here are some statistics about unmigrated documents:
|
||||
|
||||
- 2,690,309: `(*:* NOT id:/.{36}/) AND (*:* NOT id:/.+-unmigrated/)`
|
||||
- 1,494,587: `id:/.+-unmigrated/`
|
||||
- 4,184,896: `*:* NOT id:/.{36}/`
|
||||
- 4,172,929 are `type: 5` (aka SITE) so we can purge them:
|
||||
|
||||
```console
|
||||
$ curl -s "http://localhost:8081/solr/statistics-2019/update?softCommit=true" -H "Content-Type: text/xml" --data-binary "<delete><query>*:* NOT id:/.{36}/</query></delete>"
|
||||
```
|
||||
|
||||
### statistics-2018
|
||||
Processing the statistics-2018 core:
|
||||
|
||||
```console
|
||||
$ chrt -b 0 dspace solr-upgrade-statistics-6x -n 2500000 -i statistics-2018
|
||||
...
|
||||
=================================================================
|
||||
*** Statistics Records with Legacy Id ***
|
||||
|
||||
3,561,532 Bistream View
|
||||
1,129,326 Item View
|
||||
97,401 Community View
|
||||
63,508 Collection View
|
||||
207,827 Community Search
|
||||
43,752 Collection Search
|
||||
457,820 Unexpected Type & Full Site
|
||||
--------------------------------------
|
||||
5,561,166 TOTAL
|
||||
=================================================================
|
||||
```
|
||||
|
||||
After some time I got an error about Java heap space so I increased the JVM memory and restarted processing:
|
||||
|
||||
```console
|
||||
$ export JAVA_OPTS='-Dfile.encoding=UTF-8 -Xmx4096m'
|
||||
$ chrt -b 0 dspace solr-upgrade-statistics-6x -n 2500000 -i statistics-2018
|
||||
```
|
||||
|
||||
Eventually the processing finished. Here are some statistics about unmigrated documents:
|
||||
|
||||
- 365,473: `(*:* NOT id:/.{36}/) AND (*:* NOT id:/.+-unmigrated/)`
|
||||
- 546,955: `id:/.+-unmigrated/`
|
||||
- 923,158: `*:* NOT id:/.{36}/`
|
||||
- 823,293: are `type: 5` so we can purge them:
|
||||
|
||||
```console
|
||||
$ curl -s "http://localhost:8081/solr/statistics-2018/update?softCommit=true" -H "Content-Type: text/xml" --data-binary "<delete><query>*:* NOT id:/.{36}/</query></delete>"
|
||||
```
|
||||
|
||||
## statistics-2017
|
||||
|
||||
Processing the statistics-2017 core:
|
||||
|
||||
```console
|
||||
$ chrt -b 0 dspace solr-upgrade-statistics-6x -n 2500000 -i statistics-2017
|
||||
...
|
||||
=================================================================
|
||||
*** Statistics Records with Legacy Id ***
|
||||
|
||||
2,529,208 Bistream View
|
||||
1,618,717 Item View
|
||||
144,945 Community View
|
||||
74,249 Collection View
|
||||
479,647 Community Search
|
||||
114,658 Collection Search
|
||||
852,215 Unexpected Type & Full Site
|
||||
--------------------------------------
|
||||
5,813,639 TOTAL
|
||||
=================================================================
|
||||
```
|
||||
|
||||
Eventually the processing finished. Here are some statistics about unmigrated documents:
|
||||
|
||||
- 808,309: `(*:* NOT id:/.{36}/) AND (*:* NOT id:/.+-unmigrated/)`
|
||||
- 893,868: `id:/.+-unmigrated/`
|
||||
- 1,702,177: `*:* NOT id:/.{36}/`
|
||||
- 1,660,524 are `type: 5` (SITE) so we can purge them:
|
||||
|
||||
```console
|
||||
$ curl -s "http://localhost:8081/solr/statistics-2017/update?softCommit=true" -H "Content-Type: text/xml" --data-binary "<delete><query>*:* NOT id:/.{36}/</query></delete>"
|
||||
```
|
||||
|
||||
### statistics-2016
|
||||
|
||||
Processing the statistics-2016 core:
|
||||
|
||||
```console
|
||||
$ chrt -b 0 dspace solr-upgrade-statistics-6x -n 2500000 -i statistics-2016
|
||||
...
|
||||
=================================================================
|
||||
*** Statistics Records with Legacy Id ***
|
||||
|
||||
1,765,924 Bistream View
|
||||
1,151,575 Item View
|
||||
187,110 Community View
|
||||
51,204 Collection View
|
||||
347,382 Community Search
|
||||
66,605 Collection Search
|
||||
620,298 Unexpected Type & Full Site
|
||||
--------------------------------------
|
||||
4,190,098 TOTAL
|
||||
=================================================================
|
||||
```
|
||||
|
||||
- 849,408: `(*:* NOT id:/.{36}/) AND (*:* NOT id:/.+-unmigrated/)`
|
||||
- 627,747: `id:/.+-unmigrated/`
|
||||
- 1,477,155: `*:* NOT id:/.{36}/`
|
||||
- 1,469,706 are `type: 5` (SITE) so we can purge them:
|
||||
|
||||
```console
|
||||
$ curl -s "http://localhost:8081/solr/statistics-2016/update?softCommit=true" -H "Content-Type: text/xml" --data-binary "<delete><query>*:* NOT id:/.{36}/</query></delete>"
|
||||
```
|
||||
|
||||
### statistics-2015
|
||||
|
||||
Processing the statistics-2015 core:
|
||||
|
||||
```console
|
||||
$ chrt -b 0 dspace solr-upgrade-statistics-6x -n 2500000 -i statistics-2015
|
||||
...
|
||||
=================================================================
|
||||
*** Statistics Records with Legacy Id ***
|
||||
|
||||
990,916 Bistream View
|
||||
506,070 Item View
|
||||
116,153 Community View
|
||||
33,282 Collection View
|
||||
21,062 Community Search
|
||||
10,788 Collection Search
|
||||
52,107 Unexpected Type & Full Site
|
||||
--------------------------------------
|
||||
1,730,378 TOTAL
|
||||
=================================================================
|
||||
```
|
||||
|
||||
Summary of stats after processing:
|
||||
|
||||
- 195,293: `(*:* NOT id:/.{36}/) AND (*:* NOT id:/.+-unmigrated/)`
|
||||
- 67,146: `id:/.+-unmigrated/`
|
||||
- 262,439: `*:* NOT id:/.{36}/`
|
||||
- 247,400 are `type: 5` (SITE) so we can purge them:
|
||||
|
||||
```console
|
||||
$ curl -s "http://localhost:8081/solr/statistics-2015/update?softCommit=true" -H "Content-Type: text/xml" --data-binary "<delete><query>*:* NOT id:/.{36}/</query></delete>"
|
||||
```
|
||||
|
||||
## statistics-2014
|
||||
|
||||
Processing the statistics-2014 core:
|
||||
|
||||
```console
|
||||
$ chrt -b 0 dspace solr-upgrade-statistics-6x -n 2500000 -i statistics-2014
|
||||
...
|
||||
=================================================================
|
||||
*** Statistics Records with Legacy Id ***
|
||||
|
||||
2,381,603 Item View
|
||||
1,323,357 Bistream View
|
||||
501,545 Community View
|
||||
247,805 Collection View
|
||||
250 Collection Search
|
||||
188 Community Search
|
||||
50 Item Search
|
||||
10,918 Unexpected Type & Full Site
|
||||
--------------------------------------
|
||||
4,465,716 TOTAL
|
||||
=================================================================
|
||||
```
|
||||
|
||||
Summary of unmigrated documents after processing:
|
||||
|
||||
- 182,131: `(*:* NOT id:/.{36}/) AND (*:* NOT id:/.+-unmigrated/)`
|
||||
- 39,947: `id:/.+-unmigrated/`
|
||||
- 222,078: `*:* NOT id:/.{36}/`
|
||||
- 188,791 are `type: 5` (SITE) so we can purge them:
|
||||
|
||||
```console
|
||||
$ curl -s "http://localhost:8081/solr/statistics-2014/update?softCommit=true" -H "Content-Type: text/xml" --data-binary "<delete><query>*:* NOT id:/.{36}/</query></delete>"
|
||||
```
|
||||
|
||||
## statistics-2013
|
||||
|
||||
Processing the statistics-2013 core:
|
||||
|
||||
```console
|
||||
$ chrt -b 0 dspace solr-upgrade-statistics-6x -n 2500000 -i statistics-2013
|
||||
...
|
||||
=================================================================
|
||||
*** Statistics Records with Legacy Id ***
|
||||
|
||||
2,352,124 Item View
|
||||
1,117,676 Bistream View
|
||||
575,711 Community View
|
||||
171,639 Collection View
|
||||
248 Item Search
|
||||
7 Collection Search
|
||||
5 Community Search
|
||||
1,452 Unexpected Type & Full Site
|
||||
--------------------------------------
|
||||
4,218,862 TOTAL
|
||||
=================================================================
|
||||
```
|
||||
|
||||
Summary of unmigrated docs after processing:
|
||||
|
||||
- 2,548 : `(*:* NOT id:/.{36}/) AND (*:* NOT id:/.+-unmigrated/)`
|
||||
- 29,772: `id:/.+-unmigrated/`
|
||||
- 32,320: `*:* NOT id:/.{36}/`
|
||||
- 15,691 are `type: 5` (SITE) so we can purge them:
|
||||
|
||||
```console
|
||||
$ curl -s "http://localhost:8081/solr/statistics-2013/update?softCommit=true" -H "Content-Type: text/xml" --data-binary "<delete><query>*:* NOT id:/.{36}/</query></delete>"
|
||||
```
|
@ -239,6 +239,8 @@ db.statementpool = true
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -247,8 +249,6 @@ db.statementpool = true
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -261,6 +261,8 @@ $ curl -o /dev/null -s -w %{time_total}\\n https://cgspace.cgiar.org/rest/handle
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -269,8 +271,6 @@ $ curl -o /dev/null -s -w %{time_total}\\n https://cgspace.cgiar.org/rest/handle
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -197,6 +197,8 @@ $ find SimpleArchiveForBio/ -iname “*.pdf” -exec basename {} ; | sor
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -205,8 +207,6 @@ $ find SimpleArchiveForBio/ -iname “*.pdf” -exec basename {} ; | sor
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -375,6 +375,8 @@ Bitstream: tést señora alimentación.pdf
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -383,8 +385,6 @@ Bitstream: tést señora alimentación.pdf
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -313,6 +313,8 @@ Reinstall my local (Mac OS X) DSpace stack with Tomcat 7, PostgreSQL 9.3, and Ja
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -321,8 +323,6 @@ Reinstall my local (Mac OS X) DSpace stack with Tomcat 7, PostgreSQL 9.3, and Ja
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -492,6 +492,8 @@ dspace.log.2016-04-27:7271
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -500,8 +502,6 @@ dspace.log.2016-04-27:7271
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -368,6 +368,8 @@ sys 0m20.540s
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -376,8 +378,6 @@ sys 0m20.540s
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -406,6 +406,8 @@ $ ./delete-metadata-values.py -f dc.contributor.corporate -i Corporate-Authors-D
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -414,8 +416,6 @@ $ ./delete-metadata-values.py -f dc.contributor.corporate -i Corporate-Authors-D
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -322,6 +322,8 @@ discovery.index.authority.ignore-variants=true
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -330,8 +332,6 @@ discovery.index.authority.ignore-variants=true
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -386,6 +386,8 @@ $ JAVA_OPTS="-Dfile.encoding=UTF-8 -Xmx512m" /home/cgspace.cgiar.org/b
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -394,8 +396,6 @@ $ JAVA_OPTS="-Dfile.encoding=UTF-8 -Xmx512m" /home/cgspace.cgiar.org/b
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -603,6 +603,8 @@ $ ./delete-metadata-values.py -i ilrisubjects-delete-13.csv -f cg.subject.ilri -
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -611,8 +613,6 @@ $ ./delete-metadata-values.py -i ilrisubjects-delete-13.csv -f cg.subject.ilri -
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -369,6 +369,8 @@ dspace=# update metadatavalue set text_value = regexp_replace(text_value, 'http:
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -377,8 +379,6 @@ dspace=# update metadatavalue set text_value = regexp_replace(text_value, 'http:
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -545,6 +545,8 @@ org.dspace.discovery.SearchServiceException: Error executing query
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -553,8 +555,6 @@ org.dspace.discovery.SearchServiceException: Error executing query
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -781,6 +781,8 @@ $ exit
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -789,8 +791,6 @@ $ exit
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -366,6 +366,8 @@ $ gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/ebook -dNOPAUSE -
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -374,8 +376,6 @@ $ gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/ebook -dNOPAUSE -
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -421,6 +421,8 @@ COPY 1968
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -429,8 +431,6 @@ COPY 1968
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -352,6 +352,8 @@ $ ./delete-metadata-values.py -i Investors-Delete-121.csv -f dc.description.spon
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -360,8 +362,6 @@ $ ./delete-metadata-values.py -i Investors-Delete-121.csv -f dc.description.spon
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -582,6 +582,8 @@ $ gem install compass -v 1.0.3
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -590,8 +592,6 @@ $ gem install compass -v 1.0.3
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -388,6 +388,8 @@ UPDATE 187
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -396,8 +398,6 @@ UPDATE 187
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -267,6 +267,8 @@ $ JAVA_OPTS="-Xmx1024m -Dfile.encoding=UTF-8" [dspace]/bin/dspace impo
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -275,8 +277,6 @@ $ JAVA_OPTS="-Xmx1024m -Dfile.encoding=UTF-8" [dspace]/bin/dspace impo
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -272,6 +272,8 @@ delete from metadatavalue where resource_type_id=2 and metadata_field_id=235 and
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -280,8 +282,6 @@ delete from metadatavalue where resource_type_id=2 and metadata_field_id=235 and
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -514,6 +514,8 @@ org.apache.commons.dbcp.SQLNestedException: Cannot get a connection, pool error
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -522,8 +524,6 @@ org.apache.commons.dbcp.SQLNestedException: Cannot get a connection, pool error
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -656,6 +656,8 @@ Cert Status: good
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -664,8 +666,6 @@ Cert Status: good
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -440,6 +440,8 @@ session_id=6C30F10B4351A4ED83EC6ED50AFD6B6A
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -448,8 +450,6 @@ session_id=6C30F10B4351A4ED83EC6ED50AFD6B6A
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -941,6 +941,8 @@ $ cat dspace.log.2017-11-28 | grep -o -E 'session_id=[A-Z0-9]{32}' | sort -n | u
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -949,8 +951,6 @@ $ cat dspace.log.2017-11-28 | grep -o -E 'session_id=[A-Z0-9]{32}' | sort -n | u
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -780,6 +780,8 @@ DELETE 20
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -788,8 +790,6 @@ DELETE 20
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -1449,6 +1449,8 @@ Catalina:type=Manager,context=/,host=localhost activeSessions 8
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -1457,8 +1459,6 @@ Catalina:type=Manager,context=/,host=localhost activeSessions 8
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -1036,6 +1036,8 @@ UPDATE 3
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -1044,8 +1046,6 @@ UPDATE 3
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -582,6 +582,8 @@ Fixed 5 occurences of: GENEBANKS
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -590,8 +592,6 @@ Fixed 5 occurences of: GENEBANKS
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -591,6 +591,8 @@ $ pg_restore -O -U dspacetest -d dspacetest -W -h localhost /tmp/dspace_2018-04-
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -599,8 +601,6 @@ $ pg_restore -O -U dspacetest -d dspacetest -W -h localhost /tmp/dspace_2018-04-
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -520,6 +520,8 @@ $ psql -h localhost -U postgres dspacetest
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -528,8 +530,6 @@ $ psql -h localhost -U postgres dspacetest
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -514,6 +514,8 @@ $ sed '/^id/d' 10568-*.csv | csvcut -c 1,2 > map-to-cifor-archive.csv
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -522,8 +524,6 @@ $ sed '/^id/d' 10568-*.csv | csvcut -c 1,2 > map-to-cifor-archive.csv
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -566,6 +566,8 @@ dspace=# select count(text_value) from metadatavalue where resource_type_id=2 an
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -574,8 +576,6 @@ dspace=# select count(text_value) from metadatavalue where resource_type_id=2 an
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -439,6 +439,8 @@ $ dspace database migrate ignored
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -447,8 +449,6 @@ $ dspace database migrate ignored
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -745,6 +745,8 @@ UPDATE metadatavalue SET text_value='ja' WHERE resource_type_id=2 AND metadata_f
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -753,8 +755,6 @@ UPDATE metadatavalue SET text_value='ja' WHERE resource_type_id=2 AND metadata_f
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -653,6 +653,8 @@ $ curl -X GET -H "Content-Type: application/json" -H "Accept: app
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -661,8 +663,6 @@ $ curl -X GET -H "Content-Type: application/json" -H "Accept: app
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -550,6 +550,8 @@ $ dspace dsrun org.dspace.eperson.Groomer -a -b 11/27/2016 -d
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -558,8 +560,6 @@ $ dspace dsrun org.dspace.eperson.Groomer -a -b 11/27/2016 -d
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -591,6 +591,8 @@ UPDATE 1
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-11/">November, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-10/">October, 2020</a></li>
|
||||
@ -599,8 +601,6 @@ UPDATE 1
|
||||
|
||||
<li><a href="/cgspace-notes/2020-08/">August, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-07/">July, 2020</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -1261,6 +1261,8 @@ identify: CorruptImageProfile `xmp' @ warning/profile.c/SetImageProfileInternal/
|
||||
<ol class="list-unstyled">
|
||||
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
<li>< |