mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2024-11-22 14:45:03 +01:00
Add notes for 2020-02-02
This commit is contained in:
parent
ba1f1e1510
commit
e3445cb32e
121
content/posts/2020-02.md
Normal file
121
content/posts/2020-02.md
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
---
|
||||||
|
title: "February, 2020"
|
||||||
|
date: 2020-02-02T11:56:30+02:00
|
||||||
|
author: "Alan Orth"
|
||||||
|
categories: ["Notes"]
|
||||||
|
---
|
||||||
|
|
||||||
|
## 2020-02-02
|
||||||
|
|
||||||
|
- Continue working on porting CGSpace's DSpace 5 code to DSpace 6.3 that I started yesterday
|
||||||
|
- Sign up for an account with MaxMind so I can get the GeoLite2-City.mmdb database
|
||||||
|
- I still need to wire up the API credentials and cron job into the Ansible infrastructure playbooks
|
||||||
|
- Fix some minor issues in the config and XMLUI themes, like removing Atmire stuff
|
||||||
|
- The code finally builds and runs with a fresh install
|
||||||
|
|
||||||
|
<!--more-->
|
||||||
|
|
||||||
|
- Now we don't specify the build environment because site modification are in `local.cfg`, so we just build like this:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ schedtool -D -e ionice -c2 -n7 nice -n19 mvn -U -Dmirage2.on=true -Dmirage2.deps.included=false clean package
|
||||||
|
```
|
||||||
|
|
||||||
|
- And it seems that we need to enabled `pg_crypto` now (used for UUIDs):
|
||||||
|
|
||||||
|
```
|
||||||
|
$ psql -h localhost -U postgres dspace63
|
||||||
|
dspace63=# CREATE EXTENSION pgcrypto;
|
||||||
|
CREATE EXTENSION pgcrypto;
|
||||||
|
```
|
||||||
|
|
||||||
|
- I tried importing a PostgreSQL snapshot from CGSpace and had errors due to missing Atmire database migrations
|
||||||
|
- If I try to run `dspace database migrate` I get the IDs of the migrations that are missing
|
||||||
|
- I delete them manually in psql:
|
||||||
|
|
||||||
|
```
|
||||||
|
dspace63=# DELETE FROM schema_version WHERE version IN ('5.0.2015.01.27', '5.6.2015.12.03.2', '5.6.2016.08.08', '5.0.2017.04.28', '5.0.2017.09.25', '5.8.2015.12.03.3');
|
||||||
|
```
|
||||||
|
|
||||||
|
- Then I ran `dspace database migrate` and got an error:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ ~/dspace63/bin/dspace database migrate
|
||||||
|
|
||||||
|
Database URL: jdbc:postgresql://localhost:5432/dspace63?ApplicationName=dspaceCli
|
||||||
|
Migrating database to latest version... (Check dspace logs for details)
|
||||||
|
Migration exception:
|
||||||
|
java.sql.SQLException: Flyway migration error occurred
|
||||||
|
at org.dspace.storage.rdbms.DatabaseUtils.updateDatabase(DatabaseUtils.java:673)
|
||||||
|
at org.dspace.storage.rdbms.DatabaseUtils.updateDatabase(DatabaseUtils.java:576)
|
||||||
|
at org.dspace.storage.rdbms.DatabaseUtils.main(DatabaseUtils.java:221)
|
||||||
|
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)
|
||||||
|
Caused by: org.flywaydb.core.internal.dbsupport.FlywaySqlScriptException:
|
||||||
|
Migration V6.0_2015.03.07__DS-2701_Hibernate_migration.sql failed
|
||||||
|
-----------------------------------------------------------------
|
||||||
|
SQL State : 2BP01
|
||||||
|
Error Code : 0
|
||||||
|
Message : ERROR: cannot drop table metadatavalue column resource_id because other objects depend on it
|
||||||
|
Detail: view eperson_metadata depends on table metadatavalue column resource_id
|
||||||
|
Hint: Use DROP ... CASCADE to drop the dependent objects too.
|
||||||
|
Location : org/dspace/storage/rdbms/sqlmigration/postgres/V6.0_2015.03.07__DS-2701_Hibernate_migration.sql (/home/aorth/src/git/DSpace-6.3/file:/home/aorth/dspace63/lib/dspace-api-6.3.jar!/org/dspace/storage/rdbms/sqlmigration/postgres/V6.0_2015.03.07__DS-2701_Hibernate_migration.sql)
|
||||||
|
Line : 391
|
||||||
|
Statement : ALTER TABLE metadatavalue DROP COLUMN IF EXISTS resource_id
|
||||||
|
|
||||||
|
at org.flywaydb.core.internal.dbsupport.SqlScript.execute(SqlScript.java:117)
|
||||||
|
at org.flywaydb.core.internal.resolver.sql.SqlMigrationExecutor.execute(SqlMigrationExecutor.java:71)
|
||||||
|
at org.flywaydb.core.internal.command.DbMigrate.doMigrate(DbMigrate.java:352)
|
||||||
|
at org.flywaydb.core.internal.command.DbMigrate.access$1100(DbMigrate.java:47)
|
||||||
|
at org.flywaydb.core.internal.command.DbMigrate$4.doInTransaction(DbMigrate.java:308)
|
||||||
|
at org.flywaydb.core.internal.util.jdbc.TransactionTemplate.execute(TransactionTemplate.java:72)
|
||||||
|
at org.flywaydb.core.internal.command.DbMigrate.applyMigration(DbMigrate.java:305)
|
||||||
|
at org.flywaydb.core.internal.command.DbMigrate.access$1000(DbMigrate.java:47)
|
||||||
|
at org.flywaydb.core.internal.command.DbMigrate$2.doInTransaction(DbMigrate.java:230)
|
||||||
|
at org.flywaydb.core.internal.command.DbMigrate$2.doInTransaction(DbMigrate.java:173)
|
||||||
|
at org.flywaydb.core.internal.util.jdbc.TransactionTemplate.execute(TransactionTemplate.java:72)
|
||||||
|
at org.flywaydb.core.internal.command.DbMigrate.migrate(DbMigrate.java:173)
|
||||||
|
at org.flywaydb.core.Flyway$1.execute(Flyway.java:959)
|
||||||
|
at org.flywaydb.core.Flyway$1.execute(Flyway.java:917)
|
||||||
|
at org.flywaydb.core.Flyway.execute(Flyway.java:1373)
|
||||||
|
at org.flywaydb.core.Flyway.migrate(Flyway.java:917)
|
||||||
|
at org.dspace.storage.rdbms.DatabaseUtils.updateDatabase(DatabaseUtils.java:662)
|
||||||
|
... 8 more
|
||||||
|
Caused by: org.postgresql.util.PSQLException: ERROR: cannot drop table metadatavalue column resource_id because other objects depend on it
|
||||||
|
Detail: view eperson_metadata depends on table metadatavalue column resource_id
|
||||||
|
Hint: Use DROP ... CASCADE to drop the dependent objects too.
|
||||||
|
at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2422)
|
||||||
|
at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2167)
|
||||||
|
at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:306)
|
||||||
|
at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:441)
|
||||||
|
at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:365)
|
||||||
|
at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:307)
|
||||||
|
at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:293)
|
||||||
|
at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:270)
|
||||||
|
at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:266)
|
||||||
|
at org.apache.commons.dbcp2.DelegatingStatement.execute(DelegatingStatement.java:291)
|
||||||
|
at org.apache.commons.dbcp2.DelegatingStatement.execute(DelegatingStatement.java:291)
|
||||||
|
at org.flywaydb.core.internal.dbsupport.JdbcTemplate.executeStatement(JdbcTemplate.java:238)
|
||||||
|
at org.flywaydb.core.internal.dbsupport.SqlScript.execute(SqlScript.java:114)
|
||||||
|
... 24 more
|
||||||
|
```
|
||||||
|
|
||||||
|
- I think I might need to update the sequences first... nope
|
||||||
|
- Perhaps it's due to some missing bitstream IDs and I need to run `dspace cleanup` on CGSpace and take a new PostgreSQL dump... nope
|
||||||
|
- A thread on the dspace-tech mailing list regarding this migration noticed that his database had some views created that were using the `resource_id` column
|
||||||
|
- Our database had the same issue, where the `eperson_metadata` view was created by something (Atmire module?) but has no references in the vanilla DSpace code, so I dropped it and tried the migration again:
|
||||||
|
|
||||||
|
```
|
||||||
|
dspace63=# DROP VIEW eperson_metadata;
|
||||||
|
DROP VIEW
|
||||||
|
```
|
||||||
|
|
||||||
|
- After that the migration was successful and DSpace starts up successfully and begins indexing
|
||||||
|
- XMLUI, Solr, JSPUI, and OAI are working, but rest is not starting up
|
||||||
|
- I started diffing our themes against the Mirage 2 reference theme to capture the latest changes
|
||||||
|
|
||||||
|
<!-- vim: set sw=2 ts=2: -->
|
@ -239,6 +239,8 @@ db.statementpool = true
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -247,8 +249,6 @@ db.statementpool = true
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -261,6 +261,8 @@ $ curl -o /dev/null -s -w %{time_total}\\n https://cgspace.cgiar.org/rest/handle
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</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/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -197,6 +197,8 @@ $ find SimpleArchiveForBio/ -iname “*.pdf” -exec basename {} ; | sor
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -205,8 +207,6 @@ $ find SimpleArchiveForBio/ -iname “*.pdf” -exec basename {} ; | sor
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -375,6 +375,8 @@ Bitstream: tést señora alimentación.pdf
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -383,8 +385,6 @@ Bitstream: tést señora alimentación.pdf
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</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">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</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/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -492,6 +492,8 @@ dspace.log.2016-04-27:7271
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -500,8 +502,6 @@ dspace.log.2016-04-27:7271
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -368,6 +368,8 @@ sys 0m20.540s
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -376,8 +378,6 @@ sys 0m20.540s
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -406,6 +406,8 @@ $ ./delete-metadata-values.py -f dc.contributor.corporate -i Corporate-Authors-D
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -414,8 +416,6 @@ $ ./delete-metadata-values.py -f dc.contributor.corporate -i Corporate-Authors-D
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -322,6 +322,8 @@ discovery.index.authority.ignore-variants=true
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -330,8 +332,6 @@ discovery.index.authority.ignore-variants=true
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -386,6 +386,8 @@ $ JAVA_OPTS="-Dfile.encoding=UTF-8 -Xmx512m" /home/cgspace.cgiar.org/b
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -394,8 +396,6 @@ $ JAVA_OPTS="-Dfile.encoding=UTF-8 -Xmx512m" /home/cgspace.cgiar.org/b
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -603,6 +603,8 @@ $ ./delete-metadata-values.py -i ilrisubjects-delete-13.csv -f cg.subject.ilri -
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -611,8 +613,6 @@ $ ./delete-metadata-values.py -i ilrisubjects-delete-13.csv -f cg.subject.ilri -
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -369,6 +369,8 @@ dspace=# update metadatavalue set text_value = regexp_replace(text_value, 'http:
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -377,8 +379,6 @@ dspace=# update metadatavalue set text_value = regexp_replace(text_value, 'http:
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -545,6 +545,8 @@ org.dspace.discovery.SearchServiceException: Error executing query
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -553,8 +555,6 @@ org.dspace.discovery.SearchServiceException: Error executing query
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -781,6 +781,8 @@ $ exit
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -789,8 +791,6 @@ $ exit
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -366,6 +366,8 @@ $ gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/ebook -dNOPAUSE -
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -374,8 +376,6 @@ $ gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/ebook -dNOPAUSE -
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -421,6 +421,8 @@ COPY 1968
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -429,8 +431,6 @@ COPY 1968
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -352,6 +352,8 @@ $ ./delete-metadata-values.py -i Investors-Delete-121.csv -f dc.description.spon
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -360,8 +362,6 @@ $ ./delete-metadata-values.py -i Investors-Delete-121.csv -f dc.description.spon
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -582,6 +582,8 @@ $ gem install compass -v 1.0.3
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -590,8 +592,6 @@ $ gem install compass -v 1.0.3
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -388,6 +388,8 @@ UPDATE 187
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -396,8 +398,6 @@ UPDATE 187
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -267,6 +267,8 @@ $ JAVA_OPTS="-Xmx1024m -Dfile.encoding=UTF-8" [dspace]/bin/dspace impo
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -275,8 +277,6 @@ $ JAVA_OPTS="-Xmx1024m -Dfile.encoding=UTF-8" [dspace]/bin/dspace impo
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -272,6 +272,8 @@ delete from metadatavalue where resource_type_id=2 and metadata_field_id=235 and
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</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/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -514,6 +514,8 @@ org.apache.commons.dbcp.SQLNestedException: Cannot get a connection, pool error
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -522,8 +524,6 @@ org.apache.commons.dbcp.SQLNestedException: Cannot get a connection, pool error
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -656,6 +656,8 @@ Cert Status: good
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -664,8 +666,6 @@ Cert Status: good
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -440,6 +440,8 @@ session_id=6C30F10B4351A4ED83EC6ED50AFD6B6A
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -448,8 +450,6 @@ session_id=6C30F10B4351A4ED83EC6ED50AFD6B6A
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</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">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</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/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -780,6 +780,8 @@ DELETE 20
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -788,8 +790,6 @@ DELETE 20
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -1449,6 +1449,8 @@ Catalina:type=Manager,context=/,host=localhost activeSessions 8
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -1457,8 +1459,6 @@ Catalina:type=Manager,context=/,host=localhost activeSessions 8
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -1036,6 +1036,8 @@ UPDATE 3
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -1044,8 +1046,6 @@ UPDATE 3
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -582,6 +582,8 @@ Fixed 5 occurences of: GENEBANKS
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -590,8 +592,6 @@ Fixed 5 occurences of: GENEBANKS
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -591,6 +591,8 @@ $ pg_restore -O -U dspacetest -d dspacetest -W -h localhost /tmp/dspace_2018-04-
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</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/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -520,6 +520,8 @@ $ psql -h localhost -U postgres dspacetest
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -528,8 +530,6 @@ $ psql -h localhost -U postgres dspacetest
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -511,6 +511,8 @@ $ sed '/^id/d' 10568-*.csv | csvcut -c 1,2 > map-to-cifor-archive.csv
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -519,8 +521,6 @@ $ sed '/^id/d' 10568-*.csv | csvcut -c 1,2 > map-to-cifor-archive.csv
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -566,6 +566,8 @@ dspace=# select count(text_value) from metadatavalue where resource_type_id=2 an
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -574,8 +576,6 @@ dspace=# select count(text_value) from metadatavalue where resource_type_id=2 an
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -439,6 +439,8 @@ $ dspace database migrate ignored
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -447,8 +449,6 @@ $ dspace database migrate ignored
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -745,6 +745,8 @@ UPDATE metadatavalue SET text_value='ja' WHERE resource_type_id=2 AND metadata_f
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</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/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -654,6 +654,8 @@ $ curl -X GET -H "Content-Type: application/json" -H "Accept: app
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -662,8 +664,6 @@ $ curl -X GET -H "Content-Type: application/json" -H "Accept: app
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -550,6 +550,8 @@ $ dspace dsrun org.dspace.eperson.Groomer -a -b 11/27/2016 -d
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -558,8 +560,6 @@ $ dspace dsrun org.dspace.eperson.Groomer -a -b 11/27/2016 -d
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -591,6 +591,8 @@ UPDATE 1
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -599,8 +601,6 @@ UPDATE 1
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -1261,6 +1261,8 @@ identify: CorruptImageProfile `xmp' @ warning/profile.c/SetImageProfileInternal/
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -1269,8 +1271,6 @@ identify: CorruptImageProfile `xmp' @ warning/profile.c/SetImageProfileInternal/
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -1341,6 +1341,8 @@ Please see the DSpace documentation for assistance.
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -1349,8 +1351,6 @@ Please see the DSpace documentation for assistance.
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -1205,6 +1205,8 @@ sys 0m2.551s
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -1213,8 +1215,6 @@ sys 0m2.551s
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -1296,6 +1296,8 @@ UPDATE 14
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -1304,8 +1306,6 @@ UPDATE 14
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -628,6 +628,8 @@ COPY 64871
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -636,8 +638,6 @@ COPY 64871
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -314,6 +314,8 @@ UPDATE 2
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -322,8 +324,6 @@ UPDATE 2
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -551,6 +551,8 @@ issn.validate('1020-3362')
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -559,8 +561,6 @@ issn.validate('1020-3362')
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -570,6 +570,8 @@ sys 2m27.496s
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -578,8 +580,6 @@ sys 2m27.496s
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -578,6 +578,8 @@ $ csv-metadata-quality -i /tmp/clarisa-institutions.csv -o /tmp/clarisa-institut
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -586,8 +588,6 @@ $ csv-metadata-quality -i /tmp/clarisa-institutions.csv -o /tmp/clarisa-institut
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -382,6 +382,8 @@ $ dspace import -a -c 10568/104057 -e fuu@cgiar.org -m 2019-10-15-Bioversity.map
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -390,8 +392,6 @@ $ dspace import -a -c 10568/104057 -e fuu@cgiar.org -m 2019-10-15-Bioversity.map
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -689,6 +689,8 @@ $ tidy -xml -utf8 -iq -m -w 0 dspace/config/controlled-vocabularies/cg-creator-i
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -697,8 +699,6 @@ $ tidy -xml -utf8 -iq -m -w 0 dspace/config/controlled-vocabularies/cg-creator-i
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -401,6 +401,8 @@ UPDATE 1
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -409,8 +411,6 @@ UPDATE 1
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@ I tweeted the CGSpace repository link
|
|||||||
<meta property="og:type" content="article" />
|
<meta property="og:type" content="article" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2020-01/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2020-01/" />
|
||||||
<meta property="article:published_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="article:published_time" content="2020-01-06T10:48:30+02:00" />
|
||||||
<meta property="article:modified_time" content="2020-01-29T18:09:36+02:00" />
|
<meta property="article:modified_time" content="2020-01-30T17:43:34+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="January, 2020"/>
|
<meta name="twitter:title" content="January, 2020"/>
|
||||||
@ -65,7 +65,7 @@ I tweeted the CGSpace repository link
|
|||||||
"url": "https:\/\/alanorth.github.io\/cgspace-notes\/2020-01\/",
|
"url": "https:\/\/alanorth.github.io\/cgspace-notes\/2020-01\/",
|
||||||
"wordCount": "3522",
|
"wordCount": "3522",
|
||||||
"datePublished": "2020-01-06T10:48:30+02:00",
|
"datePublished": "2020-01-06T10:48:30+02:00",
|
||||||
"dateModified": "2020-01-29T18:09:36+02:00",
|
"dateModified": "2020-01-30T17:43:34+02:00",
|
||||||
"author": {
|
"author": {
|
||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
@ -557,6 +557,8 @@ $ ./fix-metadata-values.py -i /tmp/2020-01-29-ISSNs-Distinct.csv -db dspace -u d
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -565,8 +567,6 @@ $ ./fix-metadata-values.py -i /tmp/2020-01-29-ISSNs-Distinct.csv -db dspace -u d
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
307
docs/2020-02/index.html
Normal file
307
docs/2020-02/index.html
Normal file
@ -0,0 +1,307 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" >
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
|
|
||||||
|
<meta property="og:title" content="February, 2020" />
|
||||||
|
<meta property="og:description" content="2020-02-02
|
||||||
|
|
||||||
|
Continue working on porting CGSpace’s DSpace 5 code to DSpace 6.3 that I started yesterday
|
||||||
|
|
||||||
|
Sign up for an account with MaxMind so I can get the GeoLite2-City.mmdb database
|
||||||
|
I still need to wire up the API credentials and cron job into the Ansible infrastructure playbooks
|
||||||
|
Fix some minor issues in the config and XMLUI themes, like removing Atmire stuff
|
||||||
|
The code finally builds and runs with a fresh install
|
||||||
|
|
||||||
|
|
||||||
|
" />
|
||||||
|
<meta property="og:type" content="article" />
|
||||||
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2020-02/" />
|
||||||
|
<meta property="article:published_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
<meta property="article:modified_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary"/>
|
||||||
|
<meta name="twitter:title" content="February, 2020"/>
|
||||||
|
<meta name="twitter:description" content="2020-02-02
|
||||||
|
|
||||||
|
Continue working on porting CGSpace’s DSpace 5 code to DSpace 6.3 that I started yesterday
|
||||||
|
|
||||||
|
Sign up for an account with MaxMind so I can get the GeoLite2-City.mmdb database
|
||||||
|
I still need to wire up the API credentials and cron job into the Ansible infrastructure playbooks
|
||||||
|
Fix some minor issues in the config and XMLUI themes, like removing Atmire stuff
|
||||||
|
The code finally builds and runs with a fresh install
|
||||||
|
|
||||||
|
|
||||||
|
"/>
|
||||||
|
<meta name="generator" content="Hugo 0.63.2" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "http://schema.org",
|
||||||
|
"@type": "BlogPosting",
|
||||||
|
"headline": "February, 2020",
|
||||||
|
"url": "https:\/\/alanorth.github.io\/cgspace-notes\/2020-02\/",
|
||||||
|
"wordCount": "550",
|
||||||
|
"datePublished": "2020-02-02T11:56:30+02:00",
|
||||||
|
"dateModified": "2020-02-02T11:56:30+02:00",
|
||||||
|
"author": {
|
||||||
|
"@type": "Person",
|
||||||
|
"name": "Alan Orth"
|
||||||
|
},
|
||||||
|
"keywords": "Notes"
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="canonical" href="https://alanorth.github.io/cgspace-notes/2020-02/">
|
||||||
|
|
||||||
|
<title>February, 2020 | CGSpace Notes</title>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- combined, minified CSS -->
|
||||||
|
|
||||||
|
<link href="https://alanorth.github.io/cgspace-notes/css/style.6da5c906cc7a8fbb93f31cd2316c5dbe3f19ac4aa6bfb066f1243045b8f6061e.css" rel="stylesheet" integrity="sha256-baXJBsx6j7uT8xzSMWxdvj8ZrEqmv7Bm8SQwRbj2Bh4=" crossorigin="anonymous">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- minified Font Awesome for SVG icons -->
|
||||||
|
|
||||||
|
<script defer src="https://alanorth.github.io/cgspace-notes/js/fontawesome.min.90e14c13cee52929ac33e1c21694a3cc95063a194eb22aad9f7976434e1a9125.js" integrity="sha256-kOFME87lKSmsM+HCFpSjzJUGOhlOsiqtn3l2Q04akSU=" crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<!-- RSS 2.0 feed -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="blog-masthead">
|
||||||
|
<div class="container">
|
||||||
|
<nav class="nav blog-nav">
|
||||||
|
<a class="nav-link " href="https://alanorth.github.io/cgspace-notes/">Home</a>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<header class="blog-header">
|
||||||
|
<div class="container">
|
||||||
|
<h1 class="blog-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/" rel="home">CGSpace Notes</a></h1>
|
||||||
|
<p class="lead blog-description" dir="auto">Documenting day-to-day work on the <a href="https://cgspace.cgiar.org">CGSpace</a> repository.</p>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-sm-8 blog-main">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-02/">February, 2020</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2020-02-02T11:56:30+02:00">Sun Feb 02, 2020</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2020-02-02">2020-02-02</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Continue working on porting CGSpace’s DSpace 5 code to DSpace 6.3 that I started yesterday
|
||||||
|
<ul>
|
||||||
|
<li>Sign up for an account with MaxMind so I can get the GeoLite2-City.mmdb database</li>
|
||||||
|
<li>I still need to wire up the API credentials and cron job into the Ansible infrastructure playbooks</li>
|
||||||
|
<li>Fix some minor issues in the config and XMLUI themes, like removing Atmire stuff</li>
|
||||||
|
<li>The code finally builds and runs with a fresh install</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<ul>
|
||||||
|
<li>Now we don’t specify the build environment because site modification are in <code>local.cfg</code>, so we just build like this:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>$ schedtool -D -e ionice -c2 -n7 nice -n19 mvn -U -Dmirage2.on=true -Dmirage2.deps.included=false clean package
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>And it seems that we need to enabled <code>pg_crypto</code> now (used for UUIDs):</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>$ psql -h localhost -U postgres dspace63
|
||||||
|
dspace63=# CREATE EXTENSION pgcrypto;
|
||||||
|
CREATE EXTENSION pgcrypto;
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>I tried importing a PostgreSQL snapshot from CGSpace and had errors due to missing Atmire database migrations
|
||||||
|
<ul>
|
||||||
|
<li>If I try to run <code>dspace database migrate</code> I get the IDs of the migrations that are missing</li>
|
||||||
|
<li>I delete them manually in psql:</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>dspace63=# DELETE FROM schema_version WHERE version IN ('5.0.2015.01.27', '5.6.2015.12.03.2', '5.6.2016.08.08', '5.0.2017.04.28', '5.0.2017.09.25', '5.8.2015.12.03.3');
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>Then I ran <code>dspace database migrate</code> and got an error:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>$ ~/dspace63/bin/dspace database migrate
|
||||||
|
|
||||||
|
Database URL: jdbc:postgresql://localhost:5432/dspace63?ApplicationName=dspaceCli
|
||||||
|
Migrating database to latest version... (Check dspace logs for details)
|
||||||
|
Migration exception:
|
||||||
|
java.sql.SQLException: Flyway migration error occurred
|
||||||
|
at org.dspace.storage.rdbms.DatabaseUtils.updateDatabase(DatabaseUtils.java:673)
|
||||||
|
at org.dspace.storage.rdbms.DatabaseUtils.updateDatabase(DatabaseUtils.java:576)
|
||||||
|
at org.dspace.storage.rdbms.DatabaseUtils.main(DatabaseUtils.java:221)
|
||||||
|
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)
|
||||||
|
Caused by: org.flywaydb.core.internal.dbsupport.FlywaySqlScriptException:
|
||||||
|
Migration V6.0_2015.03.07__DS-2701_Hibernate_migration.sql failed
|
||||||
|
-----------------------------------------------------------------
|
||||||
|
SQL State : 2BP01
|
||||||
|
Error Code : 0
|
||||||
|
Message : ERROR: cannot drop table metadatavalue column resource_id because other objects depend on it
|
||||||
|
Detail: view eperson_metadata depends on table metadatavalue column resource_id
|
||||||
|
Hint: Use DROP ... CASCADE to drop the dependent objects too.
|
||||||
|
Location : org/dspace/storage/rdbms/sqlmigration/postgres/V6.0_2015.03.07__DS-2701_Hibernate_migration.sql (/home/aorth/src/git/DSpace-6.3/file:/home/aorth/dspace63/lib/dspace-api-6.3.jar!/org/dspace/storage/rdbms/sqlmigration/postgres/V6.0_2015.03.07__DS-2701_Hibernate_migration.sql)
|
||||||
|
Line : 391
|
||||||
|
Statement : ALTER TABLE metadatavalue DROP COLUMN IF EXISTS resource_id
|
||||||
|
|
||||||
|
at org.flywaydb.core.internal.dbsupport.SqlScript.execute(SqlScript.java:117)
|
||||||
|
at org.flywaydb.core.internal.resolver.sql.SqlMigrationExecutor.execute(SqlMigrationExecutor.java:71)
|
||||||
|
at org.flywaydb.core.internal.command.DbMigrate.doMigrate(DbMigrate.java:352)
|
||||||
|
at org.flywaydb.core.internal.command.DbMigrate.access$1100(DbMigrate.java:47)
|
||||||
|
at org.flywaydb.core.internal.command.DbMigrate$4.doInTransaction(DbMigrate.java:308)
|
||||||
|
at org.flywaydb.core.internal.util.jdbc.TransactionTemplate.execute(TransactionTemplate.java:72)
|
||||||
|
at org.flywaydb.core.internal.command.DbMigrate.applyMigration(DbMigrate.java:305)
|
||||||
|
at org.flywaydb.core.internal.command.DbMigrate.access$1000(DbMigrate.java:47)
|
||||||
|
at org.flywaydb.core.internal.command.DbMigrate$2.doInTransaction(DbMigrate.java:230)
|
||||||
|
at org.flywaydb.core.internal.command.DbMigrate$2.doInTransaction(DbMigrate.java:173)
|
||||||
|
at org.flywaydb.core.internal.util.jdbc.TransactionTemplate.execute(TransactionTemplate.java:72)
|
||||||
|
at org.flywaydb.core.internal.command.DbMigrate.migrate(DbMigrate.java:173)
|
||||||
|
at org.flywaydb.core.Flyway$1.execute(Flyway.java:959)
|
||||||
|
at org.flywaydb.core.Flyway$1.execute(Flyway.java:917)
|
||||||
|
at org.flywaydb.core.Flyway.execute(Flyway.java:1373)
|
||||||
|
at org.flywaydb.core.Flyway.migrate(Flyway.java:917)
|
||||||
|
at org.dspace.storage.rdbms.DatabaseUtils.updateDatabase(DatabaseUtils.java:662)
|
||||||
|
... 8 more
|
||||||
|
Caused by: org.postgresql.util.PSQLException: ERROR: cannot drop table metadatavalue column resource_id because other objects depend on it
|
||||||
|
Detail: view eperson_metadata depends on table metadatavalue column resource_id
|
||||||
|
Hint: Use DROP ... CASCADE to drop the dependent objects too.
|
||||||
|
at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2422)
|
||||||
|
at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2167)
|
||||||
|
at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:306)
|
||||||
|
at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:441)
|
||||||
|
at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:365)
|
||||||
|
at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:307)
|
||||||
|
at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:293)
|
||||||
|
at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:270)
|
||||||
|
at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:266)
|
||||||
|
at org.apache.commons.dbcp2.DelegatingStatement.execute(DelegatingStatement.java:291)
|
||||||
|
at org.apache.commons.dbcp2.DelegatingStatement.execute(DelegatingStatement.java:291)
|
||||||
|
at org.flywaydb.core.internal.dbsupport.JdbcTemplate.executeStatement(JdbcTemplate.java:238)
|
||||||
|
at org.flywaydb.core.internal.dbsupport.SqlScript.execute(SqlScript.java:114)
|
||||||
|
... 24 more
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>I think I might need to update the sequences first… nope</li>
|
||||||
|
<li>Perhaps it’s due to some missing bitstream IDs and I need to run <code>dspace cleanup</code> on CGSpace and take a new PostgreSQL dump… nope</li>
|
||||||
|
<li>A thread on the dspace-tech mailing list regarding this migration noticed that his database had some views created that were using the <code>resource_id</code> column</li>
|
||||||
|
<li>Our database had the same issue, where the <code>eperson_metadata</code> view was created by something (Atmire module?) but has no references in the vanilla DSpace code, so I dropped it and tried the migration again:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>dspace63=# DROP VIEW eperson_metadata;
|
||||||
|
DROP VIEW
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>After that the migration was successful and DSpace starts up successfully and begins indexing
|
||||||
|
<ul>
|
||||||
|
<li>XMLUI, Solr, JSPUI, and OAI are working, but rest is not starting up</li>
|
||||||
|
<li>I started diffing our themes against the Mirage 2 reference theme to capture the latest changes</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- raw HTML omitted -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div> <!-- /.blog-main -->
|
||||||
|
|
||||||
|
<aside class="col-sm-3 ml-auto blog-sidebar">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<section class="sidebar-module">
|
||||||
|
<h4>Recent Posts</h4>
|
||||||
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2019-11/">November, 2019</a></li>
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<section class="sidebar-module">
|
||||||
|
<h4>Links</h4>
|
||||||
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
<li><a href="https://cgspace.cgiar.org">CGSpace</a></li>
|
||||||
|
|
||||||
|
<li><a href="https://dspacetest.cgiar.org">DSpace Test</a></li>
|
||||||
|
|
||||||
|
<li><a href="https://github.com/ilri/DSpace">CGSpace @ GitHub</a></li>
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
|
||||||
|
</div> <!-- /.row -->
|
||||||
|
</div> <!-- /.container -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="blog-footer">
|
||||||
|
<p dir="auto">
|
||||||
|
|
||||||
|
Blog template created by <a href="https://twitter.com/mdo">@mdo</a>, ported to Hugo by <a href='https://twitter.com/mralanorth'>@mralanorth</a>.
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<a href="#">Back to top</a>
|
||||||
|
</p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -94,6 +94,8 @@
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -102,8 +104,6 @@
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="Categories"/>
|
<meta name="twitter:title" content="Categories"/>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
},
|
},
|
||||||
"dateModified": "2020-01-06T10:48:30+02:00",
|
"dateModified": "2020-02-02T11:56:30+02:00",
|
||||||
"keywords": "notes,migration,notes,",
|
"keywords": "notes,migration,notes,",
|
||||||
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
||||||
}
|
}
|
||||||
@ -95,6 +95,34 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-02/">February, 2020</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2020-02-02T11:56:30+02:00">Sun Feb 02, 2020</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2020-02-02">2020-02-02</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Continue working on porting CGSpace’s DSpace 5 code to DSpace 6.3 that I started yesterday
|
||||||
|
<ul>
|
||||||
|
<li>Sign up for an account with MaxMind so I can get the GeoLite2-City.mmdb database</li>
|
||||||
|
<li>I still need to wire up the API credentials and cron job into the Ansible infrastructure playbooks</li>
|
||||||
|
<li>Fix some minor issues in the config and XMLUI themes, like removing Atmire stuff</li>
|
||||||
|
<li>The code finally builds and runs with a fresh install</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2020-02/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-01/">January, 2020</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-01/">January, 2020</a></h2>
|
||||||
@ -371,39 +399,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-05/">May, 2019</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2019-05-01T07:37:43+03:00">Wed May 01, 2019</time> by Alan Orth in
|
|
||||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
|
||||||
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<h2 id="2019-05-01">2019-05-01</h2>
|
|
||||||
<ul>
|
|
||||||
<li>Help CCAFS with regenerating some item thumbnails after they uploaded new PDFs to some items on CGSpace</li>
|
|
||||||
<li>A user on the dspace-tech mailing list offered some suggestions for troubleshooting the problem with the inability to delete certain items
|
|
||||||
<ul>
|
|
||||||
<li>Apparently if the item is in the <code>workflowitem</code> table it is submitted to a workflow</li>
|
|
||||||
<li>And if it is in the <code>workspaceitem</code> table it is in the pre-submitted state</li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li>The item seems to be in a pre-submitted state, so I tried to delete it from there:</li>
|
|
||||||
</ul>
|
|
||||||
<pre><code>dspace=# DELETE FROM workspaceitem WHERE item_id=74648;
|
|
||||||
DELETE 1
|
|
||||||
</code></pre><ul>
|
|
||||||
<li>But after this I tried to delete the item from the XMLUI and it is <em>still</em> present…</li>
|
|
||||||
</ul>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/2019-05/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
|
|
||||||
@ -428,6 +423,8 @@ DELETE 1
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -436,8 +433,6 @@ DELETE 1
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<description>Recent content in Categories on CGSpace Notes</description>
|
<description>Recent content in Categories on CGSpace Notes</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Mon, 06 Jan 2020 10:48:30 +0200</lastBuildDate>
|
<lastBuildDate>Sun, 02 Feb 2020 11:56:30 +0200</lastBuildDate>
|
||||||
|
|
||||||
<atom:link href="https://alanorth.github.io/cgspace-notes/categories/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://alanorth.github.io/cgspace-notes/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
@ -14,7 +14,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<title>Notes</title>
|
<title>Notes</title>
|
||||||
<link>https://alanorth.github.io/cgspace-notes/categories/notes/</link>
|
<link>https://alanorth.github.io/cgspace-notes/categories/notes/</link>
|
||||||
<pubDate>Mon, 06 Jan 2020 10:48:30 +0200</pubDate>
|
<pubDate>Sun, 02 Feb 2020 11:56:30 +0200</pubDate>
|
||||||
|
|
||||||
<guid>https://alanorth.github.io/cgspace-notes/categories/notes/</guid>
|
<guid>https://alanorth.github.io/cgspace-notes/categories/notes/</guid>
|
||||||
<description></description>
|
<description></description>
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/notes/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="Notes"/>
|
<meta name="twitter:title" content="Notes"/>
|
||||||
@ -80,6 +80,34 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-02/">February, 2020</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2020-02-02T11:56:30+02:00">Sun Feb 02, 2020</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2020-02-02">2020-02-02</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Continue working on porting CGSpace’s DSpace 5 code to DSpace 6.3 that I started yesterday
|
||||||
|
<ul>
|
||||||
|
<li>Sign up for an account with MaxMind so I can get the GeoLite2-City.mmdb database</li>
|
||||||
|
<li>I still need to wire up the API credentials and cron job into the Ansible infrastructure playbooks</li>
|
||||||
|
<li>Fix some minor issues in the config and XMLUI themes, like removing Atmire stuff</li>
|
||||||
|
<li>The code finally builds and runs with a fresh install</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2020-02/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-01/">January, 2020</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-01/">January, 2020</a></h2>
|
||||||
@ -356,39 +384,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-05/">May, 2019</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2019-05-01T07:37:43+03:00">Wed May 01, 2019</time> by Alan Orth in
|
|
||||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
|
||||||
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<h2 id="2019-05-01">2019-05-01</h2>
|
|
||||||
<ul>
|
|
||||||
<li>Help CCAFS with regenerating some item thumbnails after they uploaded new PDFs to some items on CGSpace</li>
|
|
||||||
<li>A user on the dspace-tech mailing list offered some suggestions for troubleshooting the problem with the inability to delete certain items
|
|
||||||
<ul>
|
|
||||||
<li>Apparently if the item is in the <code>workflowitem</code> table it is submitted to a workflow</li>
|
|
||||||
<li>And if it is in the <code>workspaceitem</code> table it is in the pre-submitted state</li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li>The item seems to be in a pre-submitted state, so I tried to delete it from there:</li>
|
|
||||||
</ul>
|
|
||||||
<pre><code>dspace=# DELETE FROM workspaceitem WHERE item_id=74648;
|
|
||||||
DELETE 1
|
|
||||||
</code></pre><ul>
|
|
||||||
<li>But after this I tried to delete the item from the XMLUI and it is <em>still</em> present…</li>
|
|
||||||
</ul>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/2019-05/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
|
|
||||||
@ -413,6 +408,8 @@ DELETE 1
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -421,8 +418,6 @@ DELETE 1
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -6,11 +6,30 @@
|
|||||||
<description>Recent content in Notes on CGSpace Notes</description>
|
<description>Recent content in Notes on CGSpace Notes</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Mon, 06 Jan 2020 10:48:30 +0200</lastBuildDate>
|
<lastBuildDate>Sun, 02 Feb 2020 11:56:30 +0200</lastBuildDate>
|
||||||
|
|
||||||
<atom:link href="https://alanorth.github.io/cgspace-notes/categories/notes/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://alanorth.github.io/cgspace-notes/categories/notes/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>February, 2020</title>
|
||||||
|
<link>https://alanorth.github.io/cgspace-notes/2020-02/</link>
|
||||||
|
<pubDate>Sun, 02 Feb 2020 11:56:30 +0200</pubDate>
|
||||||
|
|
||||||
|
<guid>https://alanorth.github.io/cgspace-notes/2020-02/</guid>
|
||||||
|
<description><h2 id="2020-02-02">2020-02-02</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Continue working on porting CGSpace&rsquo;s DSpace 5 code to DSpace 6.3 that I started yesterday
|
||||||
|
<ul>
|
||||||
|
<li>Sign up for an account with MaxMind so I can get the GeoLite2-City.mmdb database</li>
|
||||||
|
<li>I still need to wire up the API credentials and cron job into the Ansible infrastructure playbooks</li>
|
||||||
|
<li>Fix some minor issues in the config and XMLUI themes, like removing Atmire stuff</li>
|
||||||
|
<li>The code finally builds and runs with a fresh install</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>January, 2020</title>
|
<title>January, 2020</title>
|
||||||
<link>https://alanorth.github.io/cgspace-notes/2020-01/</link>
|
<link>https://alanorth.github.io/cgspace-notes/2020-01/</link>
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/notes/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="Notes"/>
|
<meta name="twitter:title" content="Notes"/>
|
||||||
@ -80,6 +80,39 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-05/">May, 2019</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2019-05-01T07:37:43+03:00">Wed May 01, 2019</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2019-05-01">2019-05-01</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Help CCAFS with regenerating some item thumbnails after they uploaded new PDFs to some items on CGSpace</li>
|
||||||
|
<li>A user on the dspace-tech mailing list offered some suggestions for troubleshooting the problem with the inability to delete certain items
|
||||||
|
<ul>
|
||||||
|
<li>Apparently if the item is in the <code>workflowitem</code> table it is submitted to a workflow</li>
|
||||||
|
<li>And if it is in the <code>workspaceitem</code> table it is in the pre-submitted state</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>The item seems to be in a pre-submitted state, so I tried to delete it from there:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>dspace=# DELETE FROM workspaceitem WHERE item_id=74648;
|
||||||
|
DELETE 1
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>But after this I tried to delete the item from the XMLUI and it is <em>still</em> present…</li>
|
||||||
|
</ul>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2019-05/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-04/">April, 2019</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-04/">April, 2019</a></h2>
|
||||||
@ -363,33 +396,6 @@ sys 0m1.979s
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-07/">July, 2018</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2018-07-01T12:56:54+03:00">Sun Jul 01, 2018</time> by Alan Orth in
|
|
||||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
|
||||||
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<h2 id="2018-07-01">2018-07-01</h2>
|
|
||||||
<ul>
|
|
||||||
<li>I want to upgrade DSpace Test to DSpace 5.8 so I took a backup of its current database just in case:</li>
|
|
||||||
</ul>
|
|
||||||
<pre><code>$ pg_dump -b -v -o --format=custom -U dspace -f dspace-2018-07-01.backup dspace
|
|
||||||
</code></pre><ul>
|
|
||||||
<li>During the <code>mvn package</code> stage on the 5.8 branch I kept getting issues with java running out of memory:</li>
|
|
||||||
</ul>
|
|
||||||
<pre><code>There is insufficient memory for the Java Runtime Environment to continue.
|
|
||||||
</code></pre>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/2018-07/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
<a class="btn btn-outline-primary" href="/cgspace-notes/categories/notes/" rel="prev" role="button">Previous page</a>
|
<a class="btn btn-outline-primary" href="/cgspace-notes/categories/notes/" rel="prev" role="button">Previous page</a>
|
||||||
@ -414,6 +420,8 @@ sys 0m1.979s
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -422,8 +430,6 @@ sys 0m1.979s
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/notes/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="Notes"/>
|
<meta name="twitter:title" content="Notes"/>
|
||||||
@ -80,6 +80,33 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-07/">July, 2018</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2018-07-01T12:56:54+03:00">Sun Jul 01, 2018</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2018-07-01">2018-07-01</h2>
|
||||||
|
<ul>
|
||||||
|
<li>I want to upgrade DSpace Test to DSpace 5.8 so I took a backup of its current database just in case:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>$ pg_dump -b -v -o --format=custom -U dspace -f dspace-2018-07-01.backup dspace
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>During the <code>mvn package</code> stage on the 5.8 branch I kept getting issues with java running out of memory:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>There is insufficient memory for the Java Runtime Environment to continue.
|
||||||
|
</code></pre>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2018-07/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-06/">June, 2018</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-06/">June, 2018</a></h2>
|
||||||
@ -379,31 +406,11 @@ COPY 54701
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgiar-library-migration/">CGIAR Library Migration</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2017-09-18T16:38:35+03:00">Mon Sep 18, 2017</time> by Alan Orth in
|
|
||||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/migration/" rel="tag">Migration</a>
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<p>Rough notes for importing the CGIAR Library content. It was decided that this content would go to a new top-level community called <em>CGIAR System Organization</em>.</p>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/cgiar-library-migration/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
|
|
||||||
<a class="btn btn-outline-primary" href="/cgspace-notes/categories/notes/page/2/" rel="prev" role="button">Previous page</a>
|
<a class="btn btn-outline-primary" href="/cgspace-notes/categories/notes/page/2/" rel="prev" role="button">Previous page</a>
|
||||||
<a class="btn btn-outline-primary disabled" href="#" role="button" aria-disabled="true">Next page</a>
|
<a class="btn btn-outline-primary" href="/cgspace-notes/categories/notes/page/4/" rel="next" role="button">Next page</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
</nav>
|
||||||
@ -423,6 +430,8 @@ COPY 54701
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -431,8 +440,6 @@ COPY 54701
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
177
docs/categories/notes/page/4/index.html
Normal file
177
docs/categories/notes/page/4/index.html
Normal file
@ -0,0 +1,177 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" >
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
|
|
||||||
|
<meta property="og:title" content="Notes" />
|
||||||
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/notes/" />
|
||||||
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary"/>
|
||||||
|
<meta name="twitter:title" content="Notes"/>
|
||||||
|
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||||
|
<meta name="generator" content="Hugo 0.63.2" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="canonical" href="https://alanorth.github.io/cgspace-notes/categories/notes/">
|
||||||
|
|
||||||
|
<title>CGSpace Notes</title>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- combined, minified CSS -->
|
||||||
|
|
||||||
|
<link href="https://alanorth.github.io/cgspace-notes/css/style.6da5c906cc7a8fbb93f31cd2316c5dbe3f19ac4aa6bfb066f1243045b8f6061e.css" rel="stylesheet" integrity="sha256-baXJBsx6j7uT8xzSMWxdvj8ZrEqmv7Bm8SQwRbj2Bh4=" crossorigin="anonymous">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- minified Font Awesome for SVG icons -->
|
||||||
|
|
||||||
|
<script defer src="https://alanorth.github.io/cgspace-notes/js/fontawesome.min.90e14c13cee52929ac33e1c21694a3cc95063a194eb22aad9f7976434e1a9125.js" integrity="sha256-kOFME87lKSmsM+HCFpSjzJUGOhlOsiqtn3l2Q04akSU=" crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<!-- RSS 2.0 feed -->
|
||||||
|
<link rel="alternate" type="application/rss+xml" href="https://alanorth.github.io/cgspace-notes/categories/notes/index.xml" title="CGSpace Notes" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="blog-masthead">
|
||||||
|
<div class="container">
|
||||||
|
<nav class="nav blog-nav">
|
||||||
|
<a class="nav-link " href="https://alanorth.github.io/cgspace-notes/">Home</a>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<header class="blog-header">
|
||||||
|
<div class="container">
|
||||||
|
<h1 class="blog-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/" rel="home">CGSpace Notes</a></h1>
|
||||||
|
<p class="lead blog-description" dir="auto">Documenting day-to-day work on the <a href="https://cgspace.cgiar.org">CGSpace</a> repository.</p>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-sm-8 blog-main">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgiar-library-migration/">CGIAR Library Migration</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2017-09-18T16:38:35+03:00">Mon Sep 18, 2017</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/migration/" rel="tag">Migration</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<p>Rough notes for importing the CGIAR Library content. It was decided that this content would go to a new top-level community called <em>CGIAR System Organization</em>.</p>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/cgiar-library-migration/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
|
|
||||||
|
<a class="btn btn-outline-primary" href="/cgspace-notes/categories/notes/page/3/" rel="prev" role="button">Previous page</a>
|
||||||
|
<a class="btn btn-outline-primary disabled" href="#" role="button" aria-disabled="true">Next page</a>
|
||||||
|
|
||||||
|
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div> <!-- /.blog-main -->
|
||||||
|
|
||||||
|
<aside class="col-sm-3 ml-auto blog-sidebar">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<section class="sidebar-module">
|
||||||
|
<h4>Recent Posts</h4>
|
||||||
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2019-11/">November, 2019</a></li>
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<section class="sidebar-module">
|
||||||
|
<h4>Links</h4>
|
||||||
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
<li><a href="https://cgspace.cgiar.org">CGSpace</a></li>
|
||||||
|
|
||||||
|
<li><a href="https://dspacetest.cgiar.org">DSpace Test</a></li>
|
||||||
|
|
||||||
|
<li><a href="https://github.com/ilri/DSpace">CGSpace @ GitHub</a></li>
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
|
||||||
|
</div> <!-- /.row -->
|
||||||
|
</div> <!-- /.container -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="blog-footer">
|
||||||
|
<p dir="auto">
|
||||||
|
|
||||||
|
Blog template created by <a href="https://twitter.com/mdo">@mdo</a>, ported to Hugo by <a href='https://twitter.com/mralanorth'>@mralanorth</a>.
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<a href="#">Back to top</a>
|
||||||
|
</p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="Categories"/>
|
<meta name="twitter:title" content="Categories"/>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
},
|
},
|
||||||
"dateModified": "2020-01-06T10:48:30+02:00",
|
"dateModified": "2020-02-02T11:56:30+02:00",
|
||||||
"keywords": "notes,migration,notes,",
|
"keywords": "notes,migration,notes,",
|
||||||
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
||||||
}
|
}
|
||||||
@ -95,6 +95,39 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-05/">May, 2019</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2019-05-01T07:37:43+03:00">Wed May 01, 2019</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2019-05-01">2019-05-01</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Help CCAFS with regenerating some item thumbnails after they uploaded new PDFs to some items on CGSpace</li>
|
||||||
|
<li>A user on the dspace-tech mailing list offered some suggestions for troubleshooting the problem with the inability to delete certain items
|
||||||
|
<ul>
|
||||||
|
<li>Apparently if the item is in the <code>workflowitem</code> table it is submitted to a workflow</li>
|
||||||
|
<li>And if it is in the <code>workspaceitem</code> table it is in the pre-submitted state</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>The item seems to be in a pre-submitted state, so I tried to delete it from there:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>dspace=# DELETE FROM workspaceitem WHERE item_id=74648;
|
||||||
|
DELETE 1
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>But after this I tried to delete the item from the XMLUI and it is <em>still</em> present…</li>
|
||||||
|
</ul>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2019-05/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-04/">April, 2019</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-04/">April, 2019</a></h2>
|
||||||
@ -378,33 +411,6 @@ sys 0m1.979s
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-07/">July, 2018</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2018-07-01T12:56:54+03:00">Sun Jul 01, 2018</time> by Alan Orth in
|
|
||||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
|
||||||
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<h2 id="2018-07-01">2018-07-01</h2>
|
|
||||||
<ul>
|
|
||||||
<li>I want to upgrade DSpace Test to DSpace 5.8 so I took a backup of its current database just in case:</li>
|
|
||||||
</ul>
|
|
||||||
<pre><code>$ pg_dump -b -v -o --format=custom -U dspace -f dspace-2018-07-01.backup dspace
|
|
||||||
</code></pre><ul>
|
|
||||||
<li>During the <code>mvn package</code> stage on the 5.8 branch I kept getting issues with java running out of memory:</li>
|
|
||||||
</ul>
|
|
||||||
<pre><code>There is insufficient memory for the Java Runtime Environment to continue.
|
|
||||||
</code></pre>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/2018-07/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
<a class="btn btn-outline-primary" href="/cgspace-notes/categories/" rel="prev" role="button">Previous page</a>
|
<a class="btn btn-outline-primary" href="/cgspace-notes/categories/" rel="prev" role="button">Previous page</a>
|
||||||
@ -429,6 +435,8 @@ sys 0m1.979s
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -437,8 +445,6 @@ sys 0m1.979s
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="Categories"/>
|
<meta name="twitter:title" content="Categories"/>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
},
|
},
|
||||||
"dateModified": "2020-01-06T10:48:30+02:00",
|
"dateModified": "2020-02-02T11:56:30+02:00",
|
||||||
"keywords": "notes,migration,notes,",
|
"keywords": "notes,migration,notes,",
|
||||||
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
||||||
}
|
}
|
||||||
@ -95,6 +95,33 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-07/">July, 2018</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2018-07-01T12:56:54+03:00">Sun Jul 01, 2018</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2018-07-01">2018-07-01</h2>
|
||||||
|
<ul>
|
||||||
|
<li>I want to upgrade DSpace Test to DSpace 5.8 so I took a backup of its current database just in case:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>$ pg_dump -b -v -o --format=custom -U dspace -f dspace-2018-07-01.backup dspace
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>During the <code>mvn package</code> stage on the 5.8 branch I kept getting issues with java running out of memory:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>There is insufficient memory for the Java Runtime Environment to continue.
|
||||||
|
</code></pre>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2018-07/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-06/">June, 2018</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-06/">June, 2018</a></h2>
|
||||||
@ -394,26 +421,6 @@ COPY 54701
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgiar-library-migration/">CGIAR Library Migration</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2017-09-18T16:38:35+03:00">Mon Sep 18, 2017</time> by Alan Orth in
|
|
||||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/migration/" rel="tag">Migration</a>
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<p>Rough notes for importing the CGIAR Library content. It was decided that this content would go to a new top-level community called <em>CGIAR System Organization</em>.</p>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/cgiar-library-migration/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
<a class="btn btn-outline-primary" href="/cgspace-notes/categories/page/2/" rel="prev" role="button">Previous page</a>
|
<a class="btn btn-outline-primary" href="/cgspace-notes/categories/page/2/" rel="prev" role="button">Previous page</a>
|
||||||
@ -438,6 +445,8 @@ COPY 54701
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -446,8 +455,6 @@ COPY 54701
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="Categories"/>
|
<meta name="twitter:title" content="Categories"/>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
},
|
},
|
||||||
"dateModified": "2020-01-06T10:48:30+02:00",
|
"dateModified": "2020-02-02T11:56:30+02:00",
|
||||||
"keywords": "notes,migration,notes,",
|
"keywords": "notes,migration,notes,",
|
||||||
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
||||||
}
|
}
|
||||||
@ -95,6 +95,26 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgiar-library-migration/">CGIAR Library Migration</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2017-09-18T16:38:35+03:00">Mon Sep 18, 2017</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/migration/" rel="tag">Migration</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<p>Rough notes for importing the CGIAR Library content. It was decided that this content would go to a new top-level community called <em>CGIAR System Organization</em>.</p>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/cgiar-library-migration/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2017-09/">September, 2017</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2017-09/">September, 2017</a></h2>
|
||||||
@ -343,38 +363,6 @@ DELETE 1
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-12/">December, 2016</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2016-12-02T10:43:00+03:00">Fri Dec 02, 2016</time> by Alan Orth in
|
|
||||||
|
|
||||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/notes/" rel="tag">Notes</a>
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<h2 id="2016-12-02">2016-12-02</h2>
|
|
||||||
<ul>
|
|
||||||
<li>CGSpace was down for five hours in the morning while I was sleeping</li>
|
|
||||||
<li>While looking in the logs for errors, I see tons of warnings about Atmire MQM:</li>
|
|
||||||
</ul>
|
|
||||||
<pre><code>2016-12-02 03:00:32,352 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=CREATE, SubjectType=BUNDLE, SubjectID=70316, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632305, dispatcher=1544803905, detail=[null], transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=MODIFY_METADATA, SubjectType=BUNDLE, SubjectID =70316, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632309, dispatcher=1544803905, detail="dc.title", transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=ADD, SubjectType=ITEM, SubjectID=80044, Object Type=BUNDLE, ObjectID=70316, TimeStamp=1480647632311, dispatcher=1544803905, detail="THUMBNAIL", transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=ADD, SubjectType=BUNDLE, SubjectID=70316, Obje ctType=BITSTREAM, ObjectID=86715, TimeStamp=1480647632318, dispatcher=1544803905, detail="-1", transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=MODIFY, SubjectType=ITEM, SubjectID=80044, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632351, dispatcher=1544803905, detail=[null], transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
</code></pre><ul>
|
|
||||||
<li>I see thousands of them in the logs for the last few months, so it’s not related to the DSpace 5.5 upgrade</li>
|
|
||||||
<li>I’ve raised a ticket with Atmire to ask</li>
|
|
||||||
<li>Another worrying error from dspace.log is:</li>
|
|
||||||
</ul>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/2016-12/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
<a class="btn btn-outline-primary" href="/cgspace-notes/categories/page/3/" rel="prev" role="button">Previous page</a>
|
<a class="btn btn-outline-primary" href="/cgspace-notes/categories/page/3/" rel="prev" role="button">Previous page</a>
|
||||||
@ -399,6 +387,8 @@ DELETE 1
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -407,8 +397,6 @@ DELETE 1
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="Categories"/>
|
<meta name="twitter:title" content="Categories"/>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
},
|
},
|
||||||
"dateModified": "2020-01-06T10:48:30+02:00",
|
"dateModified": "2020-02-02T11:56:30+02:00",
|
||||||
"keywords": "notes,migration,notes,",
|
"keywords": "notes,migration,notes,",
|
||||||
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
||||||
}
|
}
|
||||||
@ -95,6 +95,38 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-12/">December, 2016</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2016-12-02T10:43:00+03:00">Fri Dec 02, 2016</time> by Alan Orth in
|
||||||
|
|
||||||
|
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/notes/" rel="tag">Notes</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2016-12-02">2016-12-02</h2>
|
||||||
|
<ul>
|
||||||
|
<li>CGSpace was down for five hours in the morning while I was sleeping</li>
|
||||||
|
<li>While looking in the logs for errors, I see tons of warnings about Atmire MQM:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>2016-12-02 03:00:32,352 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=CREATE, SubjectType=BUNDLE, SubjectID=70316, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632305, dispatcher=1544803905, detail=[null], transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=MODIFY_METADATA, SubjectType=BUNDLE, SubjectID =70316, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632309, dispatcher=1544803905, detail="dc.title", transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=ADD, SubjectType=ITEM, SubjectID=80044, Object Type=BUNDLE, ObjectID=70316, TimeStamp=1480647632311, dispatcher=1544803905, detail="THUMBNAIL", transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=ADD, SubjectType=BUNDLE, SubjectID=70316, Obje ctType=BITSTREAM, ObjectID=86715, TimeStamp=1480647632318, dispatcher=1544803905, detail="-1", transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=MODIFY, SubjectType=ITEM, SubjectID=80044, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632351, dispatcher=1544803905, detail=[null], transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>I see thousands of them in the logs for the last few months, so it’s not related to the DSpace 5.5 upgrade</li>
|
||||||
|
<li>I’ve raised a ticket with Atmire to ask</li>
|
||||||
|
<li>Another worrying error from dspace.log is:</li>
|
||||||
|
</ul>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2016-12/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-11/">November, 2016</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-11/">November, 2016</a></h2>
|
||||||
@ -333,34 +365,6 @@ dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-02/">February, 2016</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2016-02-05T13:18:00+03:00">Fri Feb 05, 2016</time> by Alan Orth in
|
|
||||||
|
|
||||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/notes/" rel="tag">Notes</a>
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<h2 id="2016-02-05">2016-02-05</h2>
|
|
||||||
<ul>
|
|
||||||
<li>Looking at some DAGRIS data for Abenet Yabowork</li>
|
|
||||||
<li>Lots of issues with spaces, newlines, etc causing the import to fail</li>
|
|
||||||
<li>I noticed we have a very <em>interesting</em> list of countries on CGSpace:</li>
|
|
||||||
</ul>
|
|
||||||
<p><img src="/cgspace-notes/2016/02/cgspace-countries.png" alt="CGSpace country list"></p>
|
|
||||||
<ul>
|
|
||||||
<li>Not only are there 49,000 countries, we have some blanks (25)…</li>
|
|
||||||
<li>Also, lots of things like “COTE D`LVOIRE” and “COTE D IVOIRE”</li>
|
|
||||||
</ul>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/2016-02/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
<a class="btn btn-outline-primary" href="/cgspace-notes/categories/page/4/" rel="prev" role="button">Previous page</a>
|
<a class="btn btn-outline-primary" href="/cgspace-notes/categories/page/4/" rel="prev" role="button">Previous page</a>
|
||||||
@ -385,6 +389,8 @@ dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -393,8 +399,6 @@ dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="Categories"/>
|
<meta name="twitter:title" content="Categories"/>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
},
|
},
|
||||||
"dateModified": "2020-01-06T10:48:30+02:00",
|
"dateModified": "2020-02-02T11:56:30+02:00",
|
||||||
"keywords": "notes,migration,notes,",
|
"keywords": "notes,migration,notes,",
|
||||||
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
||||||
}
|
}
|
||||||
@ -95,6 +95,34 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-02/">February, 2016</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2016-02-05T13:18:00+03:00">Fri Feb 05, 2016</time> by Alan Orth in
|
||||||
|
|
||||||
|
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/notes/" rel="tag">Notes</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2016-02-05">2016-02-05</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Looking at some DAGRIS data for Abenet Yabowork</li>
|
||||||
|
<li>Lots of issues with spaces, newlines, etc causing the import to fail</li>
|
||||||
|
<li>I noticed we have a very <em>interesting</em> list of countries on CGSpace:</li>
|
||||||
|
</ul>
|
||||||
|
<p><img src="/cgspace-notes/2016/02/cgspace-countries.png" alt="CGSpace country list"></p>
|
||||||
|
<ul>
|
||||||
|
<li>Not only are there 49,000 countries, we have some blanks (25)…</li>
|
||||||
|
<li>Also, lots of things like “COTE D`LVOIRE” and “COTE D IVOIRE”</li>
|
||||||
|
</ul>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2016-02/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-01/">January, 2016</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-01/">January, 2016</a></h2>
|
||||||
@ -194,6 +222,8 @@
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -202,8 +232,6 @@
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -279,6 +279,8 @@ dspace=# select setval('handle_seq',86873);
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -287,8 +289,6 @@ dspace=# select setval('handle_seq',86873);
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -451,6 +451,8 @@
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -459,8 +461,6 @@
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="CGSpace Notes"/>
|
<meta name="twitter:title" content="CGSpace Notes"/>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
},
|
},
|
||||||
"dateModified": "2020-01-06T10:48:30+02:00",
|
"dateModified": "2020-02-02T11:56:30+02:00",
|
||||||
"keywords": "notes,migration,notes,",
|
"keywords": "notes,migration,notes,",
|
||||||
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
||||||
}
|
}
|
||||||
@ -95,6 +95,34 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-02/">February, 2020</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2020-02-02T11:56:30+02:00">Sun Feb 02, 2020</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2020-02-02">2020-02-02</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Continue working on porting CGSpace’s DSpace 5 code to DSpace 6.3 that I started yesterday
|
||||||
|
<ul>
|
||||||
|
<li>Sign up for an account with MaxMind so I can get the GeoLite2-City.mmdb database</li>
|
||||||
|
<li>I still need to wire up the API credentials and cron job into the Ansible infrastructure playbooks</li>
|
||||||
|
<li>Fix some minor issues in the config and XMLUI themes, like removing Atmire stuff</li>
|
||||||
|
<li>The code finally builds and runs with a fresh install</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2020-02/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-01/">January, 2020</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-01/">January, 2020</a></h2>
|
||||||
@ -371,39 +399,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-05/">May, 2019</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2019-05-01T07:37:43+03:00">Wed May 01, 2019</time> by Alan Orth in
|
|
||||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
|
||||||
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<h2 id="2019-05-01">2019-05-01</h2>
|
|
||||||
<ul>
|
|
||||||
<li>Help CCAFS with regenerating some item thumbnails after they uploaded new PDFs to some items on CGSpace</li>
|
|
||||||
<li>A user on the dspace-tech mailing list offered some suggestions for troubleshooting the problem with the inability to delete certain items
|
|
||||||
<ul>
|
|
||||||
<li>Apparently if the item is in the <code>workflowitem</code> table it is submitted to a workflow</li>
|
|
||||||
<li>And if it is in the <code>workspaceitem</code> table it is in the pre-submitted state</li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li>The item seems to be in a pre-submitted state, so I tried to delete it from there:</li>
|
|
||||||
</ul>
|
|
||||||
<pre><code>dspace=# DELETE FROM workspaceitem WHERE item_id=74648;
|
|
||||||
DELETE 1
|
|
||||||
</code></pre><ul>
|
|
||||||
<li>But after this I tried to delete the item from the XMLUI and it is <em>still</em> present…</li>
|
|
||||||
</ul>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/2019-05/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
|
|
||||||
@ -428,6 +423,8 @@ DELETE 1
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -436,8 +433,6 @@ DELETE 1
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -6,11 +6,30 @@
|
|||||||
<description>Recent content on CGSpace Notes</description>
|
<description>Recent content on CGSpace Notes</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Mon, 06 Jan 2020 10:48:30 +0200</lastBuildDate>
|
<lastBuildDate>Sun, 02 Feb 2020 11:56:30 +0200</lastBuildDate>
|
||||||
|
|
||||||
<atom:link href="https://alanorth.github.io/cgspace-notes/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://alanorth.github.io/cgspace-notes/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>February, 2020</title>
|
||||||
|
<link>https://alanorth.github.io/cgspace-notes/2020-02/</link>
|
||||||
|
<pubDate>Sun, 02 Feb 2020 11:56:30 +0200</pubDate>
|
||||||
|
|
||||||
|
<guid>https://alanorth.github.io/cgspace-notes/2020-02/</guid>
|
||||||
|
<description><h2 id="2020-02-02">2020-02-02</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Continue working on porting CGSpace&rsquo;s DSpace 5 code to DSpace 6.3 that I started yesterday
|
||||||
|
<ul>
|
||||||
|
<li>Sign up for an account with MaxMind so I can get the GeoLite2-City.mmdb database</li>
|
||||||
|
<li>I still need to wire up the API credentials and cron job into the Ansible infrastructure playbooks</li>
|
||||||
|
<li>Fix some minor issues in the config and XMLUI themes, like removing Atmire stuff</li>
|
||||||
|
<li>The code finally builds and runs with a fresh install</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>January, 2020</title>
|
<title>January, 2020</title>
|
||||||
<link>https://alanorth.github.io/cgspace-notes/2020-01/</link>
|
<link>https://alanorth.github.io/cgspace-notes/2020-01/</link>
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="CGSpace Notes"/>
|
<meta name="twitter:title" content="CGSpace Notes"/>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
},
|
},
|
||||||
"dateModified": "2020-01-06T10:48:30+02:00",
|
"dateModified": "2020-02-02T11:56:30+02:00",
|
||||||
"keywords": "notes,migration,notes,",
|
"keywords": "notes,migration,notes,",
|
||||||
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
||||||
}
|
}
|
||||||
@ -95,6 +95,39 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-05/">May, 2019</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2019-05-01T07:37:43+03:00">Wed May 01, 2019</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2019-05-01">2019-05-01</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Help CCAFS with regenerating some item thumbnails after they uploaded new PDFs to some items on CGSpace</li>
|
||||||
|
<li>A user on the dspace-tech mailing list offered some suggestions for troubleshooting the problem with the inability to delete certain items
|
||||||
|
<ul>
|
||||||
|
<li>Apparently if the item is in the <code>workflowitem</code> table it is submitted to a workflow</li>
|
||||||
|
<li>And if it is in the <code>workspaceitem</code> table it is in the pre-submitted state</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>The item seems to be in a pre-submitted state, so I tried to delete it from there:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>dspace=# DELETE FROM workspaceitem WHERE item_id=74648;
|
||||||
|
DELETE 1
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>But after this I tried to delete the item from the XMLUI and it is <em>still</em> present…</li>
|
||||||
|
</ul>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2019-05/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-04/">April, 2019</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-04/">April, 2019</a></h2>
|
||||||
@ -378,33 +411,6 @@ sys 0m1.979s
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-07/">July, 2018</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2018-07-01T12:56:54+03:00">Sun Jul 01, 2018</time> by Alan Orth in
|
|
||||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
|
||||||
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<h2 id="2018-07-01">2018-07-01</h2>
|
|
||||||
<ul>
|
|
||||||
<li>I want to upgrade DSpace Test to DSpace 5.8 so I took a backup of its current database just in case:</li>
|
|
||||||
</ul>
|
|
||||||
<pre><code>$ pg_dump -b -v -o --format=custom -U dspace -f dspace-2018-07-01.backup dspace
|
|
||||||
</code></pre><ul>
|
|
||||||
<li>During the <code>mvn package</code> stage on the 5.8 branch I kept getting issues with java running out of memory:</li>
|
|
||||||
</ul>
|
|
||||||
<pre><code>There is insufficient memory for the Java Runtime Environment to continue.
|
|
||||||
</code></pre>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/2018-07/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
<a class="btn btn-outline-primary" href="/cgspace-notes/" rel="prev" role="button">Previous page</a>
|
<a class="btn btn-outline-primary" href="/cgspace-notes/" rel="prev" role="button">Previous page</a>
|
||||||
@ -429,6 +435,8 @@ sys 0m1.979s
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -437,8 +445,6 @@ sys 0m1.979s
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="CGSpace Notes"/>
|
<meta name="twitter:title" content="CGSpace Notes"/>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
},
|
},
|
||||||
"dateModified": "2020-01-06T10:48:30+02:00",
|
"dateModified": "2020-02-02T11:56:30+02:00",
|
||||||
"keywords": "notes,migration,notes,",
|
"keywords": "notes,migration,notes,",
|
||||||
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
||||||
}
|
}
|
||||||
@ -95,6 +95,33 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-07/">July, 2018</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2018-07-01T12:56:54+03:00">Sun Jul 01, 2018</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2018-07-01">2018-07-01</h2>
|
||||||
|
<ul>
|
||||||
|
<li>I want to upgrade DSpace Test to DSpace 5.8 so I took a backup of its current database just in case:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>$ pg_dump -b -v -o --format=custom -U dspace -f dspace-2018-07-01.backup dspace
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>During the <code>mvn package</code> stage on the 5.8 branch I kept getting issues with java running out of memory:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>There is insufficient memory for the Java Runtime Environment to continue.
|
||||||
|
</code></pre>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2018-07/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-06/">June, 2018</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-06/">June, 2018</a></h2>
|
||||||
@ -394,26 +421,6 @@ COPY 54701
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgiar-library-migration/">CGIAR Library Migration</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2017-09-18T16:38:35+03:00">Mon Sep 18, 2017</time> by Alan Orth in
|
|
||||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/migration/" rel="tag">Migration</a>
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<p>Rough notes for importing the CGIAR Library content. It was decided that this content would go to a new top-level community called <em>CGIAR System Organization</em>.</p>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/cgiar-library-migration/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
<a class="btn btn-outline-primary" href="/cgspace-notes/page/2/" rel="prev" role="button">Previous page</a>
|
<a class="btn btn-outline-primary" href="/cgspace-notes/page/2/" rel="prev" role="button">Previous page</a>
|
||||||
@ -438,6 +445,8 @@ COPY 54701
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -446,8 +455,6 @@ COPY 54701
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="CGSpace Notes"/>
|
<meta name="twitter:title" content="CGSpace Notes"/>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
},
|
},
|
||||||
"dateModified": "2020-01-06T10:48:30+02:00",
|
"dateModified": "2020-02-02T11:56:30+02:00",
|
||||||
"keywords": "notes,migration,notes,",
|
"keywords": "notes,migration,notes,",
|
||||||
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
||||||
}
|
}
|
||||||
@ -95,6 +95,26 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgiar-library-migration/">CGIAR Library Migration</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2017-09-18T16:38:35+03:00">Mon Sep 18, 2017</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/migration/" rel="tag">Migration</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<p>Rough notes for importing the CGIAR Library content. It was decided that this content would go to a new top-level community called <em>CGIAR System Organization</em>.</p>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/cgiar-library-migration/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2017-09/">September, 2017</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2017-09/">September, 2017</a></h2>
|
||||||
@ -343,38 +363,6 @@ DELETE 1
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-12/">December, 2016</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2016-12-02T10:43:00+03:00">Fri Dec 02, 2016</time> by Alan Orth in
|
|
||||||
|
|
||||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/notes/" rel="tag">Notes</a>
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<h2 id="2016-12-02">2016-12-02</h2>
|
|
||||||
<ul>
|
|
||||||
<li>CGSpace was down for five hours in the morning while I was sleeping</li>
|
|
||||||
<li>While looking in the logs for errors, I see tons of warnings about Atmire MQM:</li>
|
|
||||||
</ul>
|
|
||||||
<pre><code>2016-12-02 03:00:32,352 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=CREATE, SubjectType=BUNDLE, SubjectID=70316, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632305, dispatcher=1544803905, detail=[null], transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=MODIFY_METADATA, SubjectType=BUNDLE, SubjectID =70316, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632309, dispatcher=1544803905, detail="dc.title", transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=ADD, SubjectType=ITEM, SubjectID=80044, Object Type=BUNDLE, ObjectID=70316, TimeStamp=1480647632311, dispatcher=1544803905, detail="THUMBNAIL", transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=ADD, SubjectType=BUNDLE, SubjectID=70316, Obje ctType=BITSTREAM, ObjectID=86715, TimeStamp=1480647632318, dispatcher=1544803905, detail="-1", transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=MODIFY, SubjectType=ITEM, SubjectID=80044, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632351, dispatcher=1544803905, detail=[null], transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
</code></pre><ul>
|
|
||||||
<li>I see thousands of them in the logs for the last few months, so it’s not related to the DSpace 5.5 upgrade</li>
|
|
||||||
<li>I’ve raised a ticket with Atmire to ask</li>
|
|
||||||
<li>Another worrying error from dspace.log is:</li>
|
|
||||||
</ul>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/2016-12/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
<a class="btn btn-outline-primary" href="/cgspace-notes/page/3/" rel="prev" role="button">Previous page</a>
|
<a class="btn btn-outline-primary" href="/cgspace-notes/page/3/" rel="prev" role="button">Previous page</a>
|
||||||
@ -399,6 +387,8 @@ DELETE 1
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -407,8 +397,6 @@ DELETE 1
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="CGSpace Notes"/>
|
<meta name="twitter:title" content="CGSpace Notes"/>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
},
|
},
|
||||||
"dateModified": "2020-01-06T10:48:30+02:00",
|
"dateModified": "2020-02-02T11:56:30+02:00",
|
||||||
"keywords": "notes,migration,notes,",
|
"keywords": "notes,migration,notes,",
|
||||||
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
||||||
}
|
}
|
||||||
@ -95,6 +95,38 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-12/">December, 2016</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2016-12-02T10:43:00+03:00">Fri Dec 02, 2016</time> by Alan Orth in
|
||||||
|
|
||||||
|
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/notes/" rel="tag">Notes</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2016-12-02">2016-12-02</h2>
|
||||||
|
<ul>
|
||||||
|
<li>CGSpace was down for five hours in the morning while I was sleeping</li>
|
||||||
|
<li>While looking in the logs for errors, I see tons of warnings about Atmire MQM:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>2016-12-02 03:00:32,352 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=CREATE, SubjectType=BUNDLE, SubjectID=70316, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632305, dispatcher=1544803905, detail=[null], transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=MODIFY_METADATA, SubjectType=BUNDLE, SubjectID =70316, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632309, dispatcher=1544803905, detail="dc.title", transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=ADD, SubjectType=ITEM, SubjectID=80044, Object Type=BUNDLE, ObjectID=70316, TimeStamp=1480647632311, dispatcher=1544803905, detail="THUMBNAIL", transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=ADD, SubjectType=BUNDLE, SubjectID=70316, Obje ctType=BITSTREAM, ObjectID=86715, TimeStamp=1480647632318, dispatcher=1544803905, detail="-1", transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=MODIFY, SubjectType=ITEM, SubjectID=80044, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632351, dispatcher=1544803905, detail=[null], transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>I see thousands of them in the logs for the last few months, so it’s not related to the DSpace 5.5 upgrade</li>
|
||||||
|
<li>I’ve raised a ticket with Atmire to ask</li>
|
||||||
|
<li>Another worrying error from dspace.log is:</li>
|
||||||
|
</ul>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2016-12/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-11/">November, 2016</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-11/">November, 2016</a></h2>
|
||||||
@ -333,34 +365,6 @@ dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-02/">February, 2016</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2016-02-05T13:18:00+03:00">Fri Feb 05, 2016</time> by Alan Orth in
|
|
||||||
|
|
||||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/notes/" rel="tag">Notes</a>
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<h2 id="2016-02-05">2016-02-05</h2>
|
|
||||||
<ul>
|
|
||||||
<li>Looking at some DAGRIS data for Abenet Yabowork</li>
|
|
||||||
<li>Lots of issues with spaces, newlines, etc causing the import to fail</li>
|
|
||||||
<li>I noticed we have a very <em>interesting</em> list of countries on CGSpace:</li>
|
|
||||||
</ul>
|
|
||||||
<p><img src="/cgspace-notes/2016/02/cgspace-countries.png" alt="CGSpace country list"></p>
|
|
||||||
<ul>
|
|
||||||
<li>Not only are there 49,000 countries, we have some blanks (25)…</li>
|
|
||||||
<li>Also, lots of things like “COTE D`LVOIRE” and “COTE D IVOIRE”</li>
|
|
||||||
</ul>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/2016-02/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
<a class="btn btn-outline-primary" href="/cgspace-notes/page/4/" rel="prev" role="button">Previous page</a>
|
<a class="btn btn-outline-primary" href="/cgspace-notes/page/4/" rel="prev" role="button">Previous page</a>
|
||||||
@ -385,6 +389,8 @@ dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -393,8 +399,6 @@ dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="CGSpace Notes"/>
|
<meta name="twitter:title" content="CGSpace Notes"/>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
},
|
},
|
||||||
"dateModified": "2020-01-06T10:48:30+02:00",
|
"dateModified": "2020-02-02T11:56:30+02:00",
|
||||||
"keywords": "notes,migration,notes,",
|
"keywords": "notes,migration,notes,",
|
||||||
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
||||||
}
|
}
|
||||||
@ -95,6 +95,34 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-02/">February, 2016</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2016-02-05T13:18:00+03:00">Fri Feb 05, 2016</time> by Alan Orth in
|
||||||
|
|
||||||
|
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/notes/" rel="tag">Notes</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2016-02-05">2016-02-05</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Looking at some DAGRIS data for Abenet Yabowork</li>
|
||||||
|
<li>Lots of issues with spaces, newlines, etc causing the import to fail</li>
|
||||||
|
<li>I noticed we have a very <em>interesting</em> list of countries on CGSpace:</li>
|
||||||
|
</ul>
|
||||||
|
<p><img src="/cgspace-notes/2016/02/cgspace-countries.png" alt="CGSpace country list"></p>
|
||||||
|
<ul>
|
||||||
|
<li>Not only are there 49,000 countries, we have some blanks (25)…</li>
|
||||||
|
<li>Also, lots of things like “COTE D`LVOIRE” and “COTE D IVOIRE”</li>
|
||||||
|
</ul>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2016-02/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-01/">January, 2016</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-01/">January, 2016</a></h2>
|
||||||
@ -194,6 +222,8 @@
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -202,8 +232,6 @@
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="Posts"/>
|
<meta name="twitter:title" content="Posts"/>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
},
|
},
|
||||||
"dateModified": "2020-01-06T10:48:30+02:00",
|
"dateModified": "2020-02-02T11:56:30+02:00",
|
||||||
"keywords": "notes,migration,notes,",
|
"keywords": "notes,migration,notes,",
|
||||||
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
||||||
}
|
}
|
||||||
@ -95,6 +95,34 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-02/">February, 2020</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2020-02-02T11:56:30+02:00">Sun Feb 02, 2020</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2020-02-02">2020-02-02</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Continue working on porting CGSpace’s DSpace 5 code to DSpace 6.3 that I started yesterday
|
||||||
|
<ul>
|
||||||
|
<li>Sign up for an account with MaxMind so I can get the GeoLite2-City.mmdb database</li>
|
||||||
|
<li>I still need to wire up the API credentials and cron job into the Ansible infrastructure playbooks</li>
|
||||||
|
<li>Fix some minor issues in the config and XMLUI themes, like removing Atmire stuff</li>
|
||||||
|
<li>The code finally builds and runs with a fresh install</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2020-02/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-01/">January, 2020</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-01/">January, 2020</a></h2>
|
||||||
@ -371,39 +399,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-05/">May, 2019</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2019-05-01T07:37:43+03:00">Wed May 01, 2019</time> by Alan Orth in
|
|
||||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
|
||||||
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<h2 id="2019-05-01">2019-05-01</h2>
|
|
||||||
<ul>
|
|
||||||
<li>Help CCAFS with regenerating some item thumbnails after they uploaded new PDFs to some items on CGSpace</li>
|
|
||||||
<li>A user on the dspace-tech mailing list offered some suggestions for troubleshooting the problem with the inability to delete certain items
|
|
||||||
<ul>
|
|
||||||
<li>Apparently if the item is in the <code>workflowitem</code> table it is submitted to a workflow</li>
|
|
||||||
<li>And if it is in the <code>workspaceitem</code> table it is in the pre-submitted state</li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li>The item seems to be in a pre-submitted state, so I tried to delete it from there:</li>
|
|
||||||
</ul>
|
|
||||||
<pre><code>dspace=# DELETE FROM workspaceitem WHERE item_id=74648;
|
|
||||||
DELETE 1
|
|
||||||
</code></pre><ul>
|
|
||||||
<li>But after this I tried to delete the item from the XMLUI and it is <em>still</em> present…</li>
|
|
||||||
</ul>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/2019-05/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
|
|
||||||
@ -428,6 +423,8 @@ DELETE 1
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -436,8 +433,6 @@ DELETE 1
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -6,11 +6,30 @@
|
|||||||
<description>Recent content in Posts on CGSpace Notes</description>
|
<description>Recent content in Posts on CGSpace Notes</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Mon, 06 Jan 2020 10:48:30 +0200</lastBuildDate>
|
<lastBuildDate>Sun, 02 Feb 2020 11:56:30 +0200</lastBuildDate>
|
||||||
|
|
||||||
<atom:link href="https://alanorth.github.io/cgspace-notes/posts/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://alanorth.github.io/cgspace-notes/posts/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>February, 2020</title>
|
||||||
|
<link>https://alanorth.github.io/cgspace-notes/2020-02/</link>
|
||||||
|
<pubDate>Sun, 02 Feb 2020 11:56:30 +0200</pubDate>
|
||||||
|
|
||||||
|
<guid>https://alanorth.github.io/cgspace-notes/2020-02/</guid>
|
||||||
|
<description><h2 id="2020-02-02">2020-02-02</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Continue working on porting CGSpace&rsquo;s DSpace 5 code to DSpace 6.3 that I started yesterday
|
||||||
|
<ul>
|
||||||
|
<li>Sign up for an account with MaxMind so I can get the GeoLite2-City.mmdb database</li>
|
||||||
|
<li>I still need to wire up the API credentials and cron job into the Ansible infrastructure playbooks</li>
|
||||||
|
<li>Fix some minor issues in the config and XMLUI themes, like removing Atmire stuff</li>
|
||||||
|
<li>The code finally builds and runs with a fresh install</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>January, 2020</title>
|
<title>January, 2020</title>
|
||||||
<link>https://alanorth.github.io/cgspace-notes/2020-01/</link>
|
<link>https://alanorth.github.io/cgspace-notes/2020-01/</link>
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="Posts"/>
|
<meta name="twitter:title" content="Posts"/>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
},
|
},
|
||||||
"dateModified": "2020-01-06T10:48:30+02:00",
|
"dateModified": "2020-02-02T11:56:30+02:00",
|
||||||
"keywords": "notes,migration,notes,",
|
"keywords": "notes,migration,notes,",
|
||||||
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
||||||
}
|
}
|
||||||
@ -95,6 +95,39 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-05/">May, 2019</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2019-05-01T07:37:43+03:00">Wed May 01, 2019</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2019-05-01">2019-05-01</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Help CCAFS with regenerating some item thumbnails after they uploaded new PDFs to some items on CGSpace</li>
|
||||||
|
<li>A user on the dspace-tech mailing list offered some suggestions for troubleshooting the problem with the inability to delete certain items
|
||||||
|
<ul>
|
||||||
|
<li>Apparently if the item is in the <code>workflowitem</code> table it is submitted to a workflow</li>
|
||||||
|
<li>And if it is in the <code>workspaceitem</code> table it is in the pre-submitted state</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>The item seems to be in a pre-submitted state, so I tried to delete it from there:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>dspace=# DELETE FROM workspaceitem WHERE item_id=74648;
|
||||||
|
DELETE 1
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>But after this I tried to delete the item from the XMLUI and it is <em>still</em> present…</li>
|
||||||
|
</ul>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2019-05/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-04/">April, 2019</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-04/">April, 2019</a></h2>
|
||||||
@ -378,33 +411,6 @@ sys 0m1.979s
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-07/">July, 2018</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2018-07-01T12:56:54+03:00">Sun Jul 01, 2018</time> by Alan Orth in
|
|
||||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
|
||||||
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<h2 id="2018-07-01">2018-07-01</h2>
|
|
||||||
<ul>
|
|
||||||
<li>I want to upgrade DSpace Test to DSpace 5.8 so I took a backup of its current database just in case:</li>
|
|
||||||
</ul>
|
|
||||||
<pre><code>$ pg_dump -b -v -o --format=custom -U dspace -f dspace-2018-07-01.backup dspace
|
|
||||||
</code></pre><ul>
|
|
||||||
<li>During the <code>mvn package</code> stage on the 5.8 branch I kept getting issues with java running out of memory:</li>
|
|
||||||
</ul>
|
|
||||||
<pre><code>There is insufficient memory for the Java Runtime Environment to continue.
|
|
||||||
</code></pre>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/2018-07/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
<a class="btn btn-outline-primary" href="/cgspace-notes/posts/" rel="prev" role="button">Previous page</a>
|
<a class="btn btn-outline-primary" href="/cgspace-notes/posts/" rel="prev" role="button">Previous page</a>
|
||||||
@ -429,6 +435,8 @@ sys 0m1.979s
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -437,8 +445,6 @@ sys 0m1.979s
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="Posts"/>
|
<meta name="twitter:title" content="Posts"/>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
},
|
},
|
||||||
"dateModified": "2020-01-06T10:48:30+02:00",
|
"dateModified": "2020-02-02T11:56:30+02:00",
|
||||||
"keywords": "notes,migration,notes,",
|
"keywords": "notes,migration,notes,",
|
||||||
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
||||||
}
|
}
|
||||||
@ -95,6 +95,33 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-07/">July, 2018</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2018-07-01T12:56:54+03:00">Sun Jul 01, 2018</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2018-07-01">2018-07-01</h2>
|
||||||
|
<ul>
|
||||||
|
<li>I want to upgrade DSpace Test to DSpace 5.8 so I took a backup of its current database just in case:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>$ pg_dump -b -v -o --format=custom -U dspace -f dspace-2018-07-01.backup dspace
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>During the <code>mvn package</code> stage on the 5.8 branch I kept getting issues with java running out of memory:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>There is insufficient memory for the Java Runtime Environment to continue.
|
||||||
|
</code></pre>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2018-07/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-06/">June, 2018</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-06/">June, 2018</a></h2>
|
||||||
@ -394,26 +421,6 @@ COPY 54701
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgiar-library-migration/">CGIAR Library Migration</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2017-09-18T16:38:35+03:00">Mon Sep 18, 2017</time> by Alan Orth in
|
|
||||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/migration/" rel="tag">Migration</a>
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<p>Rough notes for importing the CGIAR Library content. It was decided that this content would go to a new top-level community called <em>CGIAR System Organization</em>.</p>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/cgiar-library-migration/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
<a class="btn btn-outline-primary" href="/cgspace-notes/posts/page/2/" rel="prev" role="button">Previous page</a>
|
<a class="btn btn-outline-primary" href="/cgspace-notes/posts/page/2/" rel="prev" role="button">Previous page</a>
|
||||||
@ -438,6 +445,8 @@ COPY 54701
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -446,8 +455,6 @@ COPY 54701
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="Posts"/>
|
<meta name="twitter:title" content="Posts"/>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
},
|
},
|
||||||
"dateModified": "2020-01-06T10:48:30+02:00",
|
"dateModified": "2020-02-02T11:56:30+02:00",
|
||||||
"keywords": "notes,migration,notes,",
|
"keywords": "notes,migration,notes,",
|
||||||
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
||||||
}
|
}
|
||||||
@ -95,6 +95,26 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgiar-library-migration/">CGIAR Library Migration</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2017-09-18T16:38:35+03:00">Mon Sep 18, 2017</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/migration/" rel="tag">Migration</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<p>Rough notes for importing the CGIAR Library content. It was decided that this content would go to a new top-level community called <em>CGIAR System Organization</em>.</p>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/cgiar-library-migration/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2017-09/">September, 2017</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2017-09/">September, 2017</a></h2>
|
||||||
@ -343,38 +363,6 @@ DELETE 1
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-12/">December, 2016</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2016-12-02T10:43:00+03:00">Fri Dec 02, 2016</time> by Alan Orth in
|
|
||||||
|
|
||||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/notes/" rel="tag">Notes</a>
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<h2 id="2016-12-02">2016-12-02</h2>
|
|
||||||
<ul>
|
|
||||||
<li>CGSpace was down for five hours in the morning while I was sleeping</li>
|
|
||||||
<li>While looking in the logs for errors, I see tons of warnings about Atmire MQM:</li>
|
|
||||||
</ul>
|
|
||||||
<pre><code>2016-12-02 03:00:32,352 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=CREATE, SubjectType=BUNDLE, SubjectID=70316, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632305, dispatcher=1544803905, detail=[null], transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=MODIFY_METADATA, SubjectType=BUNDLE, SubjectID =70316, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632309, dispatcher=1544803905, detail="dc.title", transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=ADD, SubjectType=ITEM, SubjectID=80044, Object Type=BUNDLE, ObjectID=70316, TimeStamp=1480647632311, dispatcher=1544803905, detail="THUMBNAIL", transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=ADD, SubjectType=BUNDLE, SubjectID=70316, Obje ctType=BITSTREAM, ObjectID=86715, TimeStamp=1480647632318, dispatcher=1544803905, detail="-1", transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=MODIFY, SubjectType=ITEM, SubjectID=80044, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632351, dispatcher=1544803905, detail=[null], transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
</code></pre><ul>
|
|
||||||
<li>I see thousands of them in the logs for the last few months, so it’s not related to the DSpace 5.5 upgrade</li>
|
|
||||||
<li>I’ve raised a ticket with Atmire to ask</li>
|
|
||||||
<li>Another worrying error from dspace.log is:</li>
|
|
||||||
</ul>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/2016-12/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
<a class="btn btn-outline-primary" href="/cgspace-notes/posts/page/3/" rel="prev" role="button">Previous page</a>
|
<a class="btn btn-outline-primary" href="/cgspace-notes/posts/page/3/" rel="prev" role="button">Previous page</a>
|
||||||
@ -399,6 +387,8 @@ DELETE 1
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -407,8 +397,6 @@ DELETE 1
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="Posts"/>
|
<meta name="twitter:title" content="Posts"/>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
},
|
},
|
||||||
"dateModified": "2020-01-06T10:48:30+02:00",
|
"dateModified": "2020-02-02T11:56:30+02:00",
|
||||||
"keywords": "notes,migration,notes,",
|
"keywords": "notes,migration,notes,",
|
||||||
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
||||||
}
|
}
|
||||||
@ -95,6 +95,38 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-12/">December, 2016</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2016-12-02T10:43:00+03:00">Fri Dec 02, 2016</time> by Alan Orth in
|
||||||
|
|
||||||
|
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/notes/" rel="tag">Notes</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2016-12-02">2016-12-02</h2>
|
||||||
|
<ul>
|
||||||
|
<li>CGSpace was down for five hours in the morning while I was sleeping</li>
|
||||||
|
<li>While looking in the logs for errors, I see tons of warnings about Atmire MQM:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>2016-12-02 03:00:32,352 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=CREATE, SubjectType=BUNDLE, SubjectID=70316, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632305, dispatcher=1544803905, detail=[null], transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=MODIFY_METADATA, SubjectType=BUNDLE, SubjectID =70316, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632309, dispatcher=1544803905, detail="dc.title", transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=ADD, SubjectType=ITEM, SubjectID=80044, Object Type=BUNDLE, ObjectID=70316, TimeStamp=1480647632311, dispatcher=1544803905, detail="THUMBNAIL", transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=ADD, SubjectType=BUNDLE, SubjectID=70316, Obje ctType=BITSTREAM, ObjectID=86715, TimeStamp=1480647632318, dispatcher=1544803905, detail="-1", transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=MODIFY, SubjectType=ITEM, SubjectID=80044, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632351, dispatcher=1544803905, detail=[null], transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>I see thousands of them in the logs for the last few months, so it’s not related to the DSpace 5.5 upgrade</li>
|
||||||
|
<li>I’ve raised a ticket with Atmire to ask</li>
|
||||||
|
<li>Another worrying error from dspace.log is:</li>
|
||||||
|
</ul>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2016-12/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-11/">November, 2016</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-11/">November, 2016</a></h2>
|
||||||
@ -333,34 +365,6 @@ dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-02/">February, 2016</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2016-02-05T13:18:00+03:00">Fri Feb 05, 2016</time> by Alan Orth in
|
|
||||||
|
|
||||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/notes/" rel="tag">Notes</a>
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<h2 id="2016-02-05">2016-02-05</h2>
|
|
||||||
<ul>
|
|
||||||
<li>Looking at some DAGRIS data for Abenet Yabowork</li>
|
|
||||||
<li>Lots of issues with spaces, newlines, etc causing the import to fail</li>
|
|
||||||
<li>I noticed we have a very <em>interesting</em> list of countries on CGSpace:</li>
|
|
||||||
</ul>
|
|
||||||
<p><img src="/cgspace-notes/2016/02/cgspace-countries.png" alt="CGSpace country list"></p>
|
|
||||||
<ul>
|
|
||||||
<li>Not only are there 49,000 countries, we have some blanks (25)…</li>
|
|
||||||
<li>Also, lots of things like “COTE D`LVOIRE” and “COTE D IVOIRE”</li>
|
|
||||||
</ul>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/2016-02/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
<a class="btn btn-outline-primary" href="/cgspace-notes/posts/page/4/" rel="prev" role="button">Previous page</a>
|
<a class="btn btn-outline-primary" href="/cgspace-notes/posts/page/4/" rel="prev" role="button">Previous page</a>
|
||||||
@ -385,6 +389,8 @@ dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -393,8 +399,6 @@ dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
||||||
<meta property="og:updated_time" content="2020-01-06T10:48:30+02:00" />
|
<meta property="og:updated_time" content="2020-02-02T11:56:30+02:00" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="Posts"/>
|
<meta name="twitter:title" content="Posts"/>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
},
|
},
|
||||||
"dateModified": "2020-01-06T10:48:30+02:00",
|
"dateModified": "2020-02-02T11:56:30+02:00",
|
||||||
"keywords": "notes,migration,notes,",
|
"keywords": "notes,migration,notes,",
|
||||||
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
"description": "Documenting day-to-day work on the [CGSpace](https:\/\/cgspace.cgiar.org) repository."
|
||||||
}
|
}
|
||||||
@ -95,6 +95,34 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-02/">February, 2016</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2016-02-05T13:18:00+03:00">Fri Feb 05, 2016</time> by Alan Orth in
|
||||||
|
|
||||||
|
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/notes/" rel="tag">Notes</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2016-02-05">2016-02-05</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Looking at some DAGRIS data for Abenet Yabowork</li>
|
||||||
|
<li>Lots of issues with spaces, newlines, etc causing the import to fail</li>
|
||||||
|
<li>I noticed we have a very <em>interesting</em> list of countries on CGSpace:</li>
|
||||||
|
</ul>
|
||||||
|
<p><img src="/cgspace-notes/2016/02/cgspace-countries.png" alt="CGSpace country list"></p>
|
||||||
|
<ul>
|
||||||
|
<li>Not only are there 49,000 countries, we have some blanks (25)…</li>
|
||||||
|
<li>Also, lots of things like “COTE D`LVOIRE” and “COTE D IVOIRE”</li>
|
||||||
|
</ul>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2016-02/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-01/">January, 2016</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-01/">January, 2016</a></h2>
|
||||||
@ -194,6 +222,8 @@
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -202,8 +232,6 @@
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -3,9 +3,10 @@ User-agent: *
|
|||||||
|
|
||||||
Disallow: /cgspace-notes/categories/
|
Disallow: /cgspace-notes/categories/
|
||||||
Disallow: /cgspace-notes/
|
Disallow: /cgspace-notes/
|
||||||
Disallow: /cgspace-notes/2020-01/
|
Disallow: /cgspace-notes/2020-02/
|
||||||
Disallow: /cgspace-notes/categories/notes/
|
Disallow: /cgspace-notes/categories/notes/
|
||||||
Disallow: /cgspace-notes/posts/
|
Disallow: /cgspace-notes/posts/
|
||||||
|
Disallow: /cgspace-notes/2020-01/
|
||||||
Disallow: /cgspace-notes/2019-12/
|
Disallow: /cgspace-notes/2019-12/
|
||||||
Disallow: /cgspace-notes/2019-11/
|
Disallow: /cgspace-notes/2019-11/
|
||||||
Disallow: /cgspace-notes/cgspace-cgcorev2-migration/
|
Disallow: /cgspace-notes/cgspace-cgcorev2-migration/
|
||||||
|
@ -4,27 +4,32 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/categories/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/categories/</loc>
|
||||||
<lastmod>2020-01-29T18:09:36+02:00</lastmod>
|
<lastmod>2020-02-02T11:56:30+02:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
||||||
<lastmod>2020-01-29T18:09:36+02:00</lastmod>
|
<lastmod>2020-02-02T11:56:30+02:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/2020-01/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/2020-02/</loc>
|
||||||
<lastmod>2020-01-29T18:09:36+02:00</lastmod>
|
<lastmod>2020-02-02T11:56:30+02:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/categories/notes/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/categories/notes/</loc>
|
||||||
<lastmod>2020-01-29T18:09:36+02:00</lastmod>
|
<lastmod>2020-02-02T11:56:30+02:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/posts/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/posts/</loc>
|
||||||
<lastmod>2020-01-29T18:09:36+02:00</lastmod>
|
<lastmod>2020-02-02T11:56:30+02:00</lastmod>
|
||||||
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://alanorth.github.io/cgspace-notes/2020-01/</loc>
|
||||||
|
<lastmod>2020-01-30T17:43:34+02:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
|
@ -95,6 +95,34 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-02/">February, 2020</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2020-02-02T11:56:30+02:00">Sun Feb 02, 2020</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2020-02-02">2020-02-02</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Continue working on porting CGSpace’s DSpace 5 code to DSpace 6.3 that I started yesterday
|
||||||
|
<ul>
|
||||||
|
<li>Sign up for an account with MaxMind so I can get the GeoLite2-City.mmdb database</li>
|
||||||
|
<li>I still need to wire up the API credentials and cron job into the Ansible infrastructure playbooks</li>
|
||||||
|
<li>Fix some minor issues in the config and XMLUI themes, like removing Atmire stuff</li>
|
||||||
|
<li>The code finally builds and runs with a fresh install</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2020-02/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-01/">January, 2020</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-01/">January, 2020</a></h2>
|
||||||
@ -371,39 +399,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-05/">May, 2019</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2019-05-01T07:37:43+03:00">Wed May 01, 2019</time> by Alan Orth in
|
|
||||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
|
||||||
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<h2 id="2019-05-01">2019-05-01</h2>
|
|
||||||
<ul>
|
|
||||||
<li>Help CCAFS with regenerating some item thumbnails after they uploaded new PDFs to some items on CGSpace</li>
|
|
||||||
<li>A user on the dspace-tech mailing list offered some suggestions for troubleshooting the problem with the inability to delete certain items
|
|
||||||
<ul>
|
|
||||||
<li>Apparently if the item is in the <code>workflowitem</code> table it is submitted to a workflow</li>
|
|
||||||
<li>And if it is in the <code>workspaceitem</code> table it is in the pre-submitted state</li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li>The item seems to be in a pre-submitted state, so I tried to delete it from there:</li>
|
|
||||||
</ul>
|
|
||||||
<pre><code>dspace=# DELETE FROM workspaceitem WHERE item_id=74648;
|
|
||||||
DELETE 1
|
|
||||||
</code></pre><ul>
|
|
||||||
<li>But after this I tried to delete the item from the XMLUI and it is <em>still</em> present…</li>
|
|
||||||
</ul>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/2019-05/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
|
|
||||||
@ -428,6 +423,8 @@ DELETE 1
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -436,8 +433,6 @@ DELETE 1
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -134,6 +134,8 @@
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -142,8 +144,6 @@
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -384,6 +384,8 @@ DELETE 1
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -392,8 +394,6 @@ DELETE 1
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -370,6 +370,8 @@ dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -378,8 +380,6 @@ dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -179,6 +179,8 @@
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -187,8 +189,6 @@
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -95,6 +95,39 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-05/">May, 2019</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2019-05-01T07:37:43+03:00">Wed May 01, 2019</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2019-05-01">2019-05-01</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Help CCAFS with regenerating some item thumbnails after they uploaded new PDFs to some items on CGSpace</li>
|
||||||
|
<li>A user on the dspace-tech mailing list offered some suggestions for troubleshooting the problem with the inability to delete certain items
|
||||||
|
<ul>
|
||||||
|
<li>Apparently if the item is in the <code>workflowitem</code> table it is submitted to a workflow</li>
|
||||||
|
<li>And if it is in the <code>workspaceitem</code> table it is in the pre-submitted state</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>The item seems to be in a pre-submitted state, so I tried to delete it from there:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>dspace=# DELETE FROM workspaceitem WHERE item_id=74648;
|
||||||
|
DELETE 1
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>But after this I tried to delete the item from the XMLUI and it is <em>still</em> present…</li>
|
||||||
|
</ul>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2019-05/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-04/">April, 2019</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-04/">April, 2019</a></h2>
|
||||||
@ -378,33 +411,6 @@ sys 0m1.979s
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-07/">July, 2018</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2018-07-01T12:56:54+03:00">Sun Jul 01, 2018</time> by Alan Orth in
|
|
||||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
|
||||||
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<h2 id="2018-07-01">2018-07-01</h2>
|
|
||||||
<ul>
|
|
||||||
<li>I want to upgrade DSpace Test to DSpace 5.8 so I took a backup of its current database just in case:</li>
|
|
||||||
</ul>
|
|
||||||
<pre><code>$ pg_dump -b -v -o --format=custom -U dspace -f dspace-2018-07-01.backup dspace
|
|
||||||
</code></pre><ul>
|
|
||||||
<li>During the <code>mvn package</code> stage on the 5.8 branch I kept getting issues with java running out of memory:</li>
|
|
||||||
</ul>
|
|
||||||
<pre><code>There is insufficient memory for the Java Runtime Environment to continue.
|
|
||||||
</code></pre>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/2018-07/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
<a class="btn btn-outline-primary" href="/cgspace-notes/tags/" rel="prev" role="button">Previous page</a>
|
<a class="btn btn-outline-primary" href="/cgspace-notes/tags/" rel="prev" role="button">Previous page</a>
|
||||||
@ -429,6 +435,8 @@ sys 0m1.979s
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -437,8 +445,6 @@ sys 0m1.979s
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -95,6 +95,33 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-07/">July, 2018</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2018-07-01T12:56:54+03:00">Sun Jul 01, 2018</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2018-07-01">2018-07-01</h2>
|
||||||
|
<ul>
|
||||||
|
<li>I want to upgrade DSpace Test to DSpace 5.8 so I took a backup of its current database just in case:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>$ pg_dump -b -v -o --format=custom -U dspace -f dspace-2018-07-01.backup dspace
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>During the <code>mvn package</code> stage on the 5.8 branch I kept getting issues with java running out of memory:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>There is insufficient memory for the Java Runtime Environment to continue.
|
||||||
|
</code></pre>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2018-07/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-06/">June, 2018</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2018-06/">June, 2018</a></h2>
|
||||||
@ -394,26 +421,6 @@ COPY 54701
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgiar-library-migration/">CGIAR Library Migration</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2017-09-18T16:38:35+03:00">Mon Sep 18, 2017</time> by Alan Orth in
|
|
||||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/migration/" rel="tag">Migration</a>
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<p>Rough notes for importing the CGIAR Library content. It was decided that this content would go to a new top-level community called <em>CGIAR System Organization</em>.</p>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/cgiar-library-migration/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
<a class="btn btn-outline-primary" href="/cgspace-notes/tags/page/2/" rel="prev" role="button">Previous page</a>
|
<a class="btn btn-outline-primary" href="/cgspace-notes/tags/page/2/" rel="prev" role="button">Previous page</a>
|
||||||
@ -438,6 +445,8 @@ COPY 54701
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -446,8 +455,6 @@ COPY 54701
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -95,6 +95,26 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgiar-library-migration/">CGIAR Library Migration</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2017-09-18T16:38:35+03:00">Mon Sep 18, 2017</time> by Alan Orth in
|
||||||
|
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/migration/" rel="tag">Migration</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<p>Rough notes for importing the CGIAR Library content. It was decided that this content would go to a new top-level community called <em>CGIAR System Organization</em>.</p>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/cgiar-library-migration/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2017-09/">September, 2017</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2017-09/">September, 2017</a></h2>
|
||||||
@ -343,38 +363,6 @@ DELETE 1
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-12/">December, 2016</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2016-12-02T10:43:00+03:00">Fri Dec 02, 2016</time> by Alan Orth in
|
|
||||||
|
|
||||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/notes/" rel="tag">Notes</a>
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<h2 id="2016-12-02">2016-12-02</h2>
|
|
||||||
<ul>
|
|
||||||
<li>CGSpace was down for five hours in the morning while I was sleeping</li>
|
|
||||||
<li>While looking in the logs for errors, I see tons of warnings about Atmire MQM:</li>
|
|
||||||
</ul>
|
|
||||||
<pre><code>2016-12-02 03:00:32,352 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=CREATE, SubjectType=BUNDLE, SubjectID=70316, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632305, dispatcher=1544803905, detail=[null], transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=MODIFY_METADATA, SubjectType=BUNDLE, SubjectID =70316, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632309, dispatcher=1544803905, detail="dc.title", transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=ADD, SubjectType=ITEM, SubjectID=80044, Object Type=BUNDLE, ObjectID=70316, TimeStamp=1480647632311, dispatcher=1544803905, detail="THUMBNAIL", transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=ADD, SubjectType=BUNDLE, SubjectID=70316, Obje ctType=BITSTREAM, ObjectID=86715, TimeStamp=1480647632318, dispatcher=1544803905, detail="-1", transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=MODIFY, SubjectType=ITEM, SubjectID=80044, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632351, dispatcher=1544803905, detail=[null], transactionID="TX157907838689377964651674089851855413607")
|
|
||||||
</code></pre><ul>
|
|
||||||
<li>I see thousands of them in the logs for the last few months, so it’s not related to the DSpace 5.5 upgrade</li>
|
|
||||||
<li>I’ve raised a ticket with Atmire to ask</li>
|
|
||||||
<li>Another worrying error from dspace.log is:</li>
|
|
||||||
</ul>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/2016-12/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
<a class="btn btn-outline-primary" href="/cgspace-notes/tags/page/3/" rel="prev" role="button">Previous page</a>
|
<a class="btn btn-outline-primary" href="/cgspace-notes/tags/page/3/" rel="prev" role="button">Previous page</a>
|
||||||
@ -399,6 +387,8 @@ DELETE 1
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -407,8 +397,6 @@ DELETE 1
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -95,6 +95,38 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-12/">December, 2016</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2016-12-02T10:43:00+03:00">Fri Dec 02, 2016</time> by Alan Orth in
|
||||||
|
|
||||||
|
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/notes/" rel="tag">Notes</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2016-12-02">2016-12-02</h2>
|
||||||
|
<ul>
|
||||||
|
<li>CGSpace was down for five hours in the morning while I was sleeping</li>
|
||||||
|
<li>While looking in the logs for errors, I see tons of warnings about Atmire MQM:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code>2016-12-02 03:00:32,352 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=CREATE, SubjectType=BUNDLE, SubjectID=70316, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632305, dispatcher=1544803905, detail=[null], transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=MODIFY_METADATA, SubjectType=BUNDLE, SubjectID =70316, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632309, dispatcher=1544803905, detail="dc.title", transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=ADD, SubjectType=ITEM, SubjectID=80044, Object Type=BUNDLE, ObjectID=70316, TimeStamp=1480647632311, dispatcher=1544803905, detail="THUMBNAIL", transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=ADD, SubjectType=BUNDLE, SubjectID=70316, Obje ctType=BITSTREAM, ObjectID=86715, TimeStamp=1480647632318, dispatcher=1544803905, detail="-1", transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
2016-12-02 03:00:32,353 WARN com.atmire.metadataquality.batchedit.BatchEditConsumer @ BatchEditConsumer should not have been given this kind of Subject in an event, skipping: org.dspace.event.Event(eventType=MODIFY, SubjectType=ITEM, SubjectID=80044, ObjectType=(Unknown), ObjectID=-1, TimeStamp=1480647632351, dispatcher=1544803905, detail=[null], transactionID="TX157907838689377964651674089851855413607")
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>I see thousands of them in the logs for the last few months, so it’s not related to the DSpace 5.5 upgrade</li>
|
||||||
|
<li>I’ve raised a ticket with Atmire to ask</li>
|
||||||
|
<li>Another worrying error from dspace.log is:</li>
|
||||||
|
</ul>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2016-12/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-11/">November, 2016</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-11/">November, 2016</a></h2>
|
||||||
@ -333,34 +365,6 @@ dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
|
||||||
<header>
|
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-02/">February, 2016</a></h2>
|
|
||||||
<p class="blog-post-meta"><time datetime="2016-02-05T13:18:00+03:00">Fri Feb 05, 2016</time> by Alan Orth in
|
|
||||||
|
|
||||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/notes/" rel="tag">Notes</a>
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<h2 id="2016-02-05">2016-02-05</h2>
|
|
||||||
<ul>
|
|
||||||
<li>Looking at some DAGRIS data for Abenet Yabowork</li>
|
|
||||||
<li>Lots of issues with spaces, newlines, etc causing the import to fail</li>
|
|
||||||
<li>I noticed we have a very <em>interesting</em> list of countries on CGSpace:</li>
|
|
||||||
</ul>
|
|
||||||
<p><img src="/cgspace-notes/2016/02/cgspace-countries.png" alt="CGSpace country list"></p>
|
|
||||||
<ul>
|
|
||||||
<li>Not only are there 49,000 countries, we have some blanks (25)…</li>
|
|
||||||
<li>Also, lots of things like “COTE D`LVOIRE” and “COTE D IVOIRE”</li>
|
|
||||||
</ul>
|
|
||||||
<a href='https://alanorth.github.io/cgspace-notes/2016-02/'>Read more →</a>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav class="blog-pagination">
|
<nav class="blog-pagination">
|
||||||
|
|
||||||
<a class="btn btn-outline-primary" href="/cgspace-notes/tags/page/4/" rel="prev" role="button">Previous page</a>
|
<a class="btn btn-outline-primary" href="/cgspace-notes/tags/page/4/" rel="prev" role="button">Previous page</a>
|
||||||
@ -385,6 +389,8 @@ dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -393,8 +399,6 @@ dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -95,6 +95,34 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<article class="blog-post">
|
||||||
|
<header>
|
||||||
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-02/">February, 2016</a></h2>
|
||||||
|
<p class="blog-post-meta"><time datetime="2016-02-05T13:18:00+03:00">Fri Feb 05, 2016</time> by Alan Orth in
|
||||||
|
|
||||||
|
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/notes/" rel="tag">Notes</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</header>
|
||||||
|
<h2 id="2016-02-05">2016-02-05</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Looking at some DAGRIS data for Abenet Yabowork</li>
|
||||||
|
<li>Lots of issues with spaces, newlines, etc causing the import to fail</li>
|
||||||
|
<li>I noticed we have a very <em>interesting</em> list of countries on CGSpace:</li>
|
||||||
|
</ul>
|
||||||
|
<p><img src="/cgspace-notes/2016/02/cgspace-countries.png" alt="CGSpace country list"></p>
|
||||||
|
<ul>
|
||||||
|
<li>Not only are there 49,000 countries, we have some blanks (25)…</li>
|
||||||
|
<li>Also, lots of things like “COTE D`LVOIRE” and “COTE D IVOIRE”</li>
|
||||||
|
</ul>
|
||||||
|
<a href='https://alanorth.github.io/cgspace-notes/2016-02/'>Read more →</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="blog-post">
|
<article class="blog-post">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-01/">January, 2016</a></h2>
|
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2016-01/">January, 2016</a></h2>
|
||||||
@ -194,6 +222,8 @@
|
|||||||
<ol class="list-unstyled">
|
<ol class="list-unstyled">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/cgspace-notes/2020-02/">February, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
<li><a href="/cgspace-notes/2020-01/">January, 2020</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
<li><a href="/cgspace-notes/2019-12/">December, 2019</a></li>
|
||||||
@ -202,8 +232,6 @@
|
|||||||
|
|
||||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||||
|
|
||||||
<li><a href="/cgspace-notes/2019-10/">October, 2019</a></li>
|
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user