DSpace partially works

1,425 views
Skip to first unread message

Stevenson Gossage

unread,
Oct 19, 2021, 12:52:44 PM10/19/21
to DSpace Technical Support
Hi all,

We have a sandbox running DSpace 7 frontend and backend from a single AWS ec2 instance using the latest Amazon linux ami. We are using  Apache HTTPD to proxy https to tomcat/pm2. Currently, we can create account via UI and login and we can create communities but not much else. Seems like post is working but not Gets which makes it impoassible to create sub-communities and collections. We have created only have 5 top level communities and no collections as can be seen by querying the DB directly:

dspace=> select * from community;
 community_id |                 uuid                 | admin | logo_bitstream_id
--------------+--------------------------------------+-------+-------------------
              | b3a59125-6d63-4095-a3ae-478a3515e578 |       |
              | 63023b8d-b789-47b0-9a0c-4d8792dc73bd |       |
              | 9cf4f8f1-50b1-46ff-a084-fe56213d0bb4 |       |
              | 2f2f2d1f-d2aa-4c82-a68b-0ee8559e5b86 |       |
              | 9e76cc96-f7a2-4600-8460-ebd12c5b86ba |       |

However, even with one of the UUID above we v=can hit the community from the UI

test 2 (ospr.link)


Here is our homepage

www.ospr.link

The HAL Browser (customized for DSpace Server Webapp) (ospr.link)

For example using the HAL Browser, a get on communities:

https://www.ospr.link/server/api/core/communities

gives a 500 error:

headers:

500 500

 cache-control: no-cache, no-store, max-age=0, must-revalidate

connection: Keep-Alive

content-language: en

content-type: application/hal+json;charset=UTF-8

date: Tue, 19 Oct 2021 11:57:41 GMT

expires: 0

pragma: no-cache

server: Apache/2.4.51 () OpenSSL/1.0.2k-fips

strict-transport-security: max-age=31536000 ; includeSubDomains

transfer-encoding: chunked

vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers

x-content-type-options: nosniff

x-frame-options: DENY

x-xss-protection: 1; mode=block

 

Response body:

{

  "timestamp": "2021-10-19T11:57:41.580+00:00",

  "status": 500,

  "error": "Internal Server Error",

  "message": "An exception has occurred",

  "path": "/server/api/core/communities"

}

An attempt to browse communities in UI just never returns any data:

 

Please let me know what else you may need to help troubleshoot this problem.

 

Thanks very much,

 

Stevenson

Tim Donohue

unread,
Oct 19, 2021, 12:58:22 PM10/19/21
to Stevenson Gossage, DSpace Technical Support
Hi Stevenson,

A 500 error usually means there's an error in the backend's logs (dspace.log or Tomcat logs).  Here's a guide for finding error messages in DSpace 7: 
https://wiki.lyrasis.org/display/DSPACE/Troubleshoot+an+error#Troubleshootanerror-DSpace7.x(orabove)

My guess is that you'll find a more specific error on the backend. It could be a database problem or a Solr issue, or similar. But it's hard to say without looking at the error message / stacktrace.

Once you find the error, if you need more help, feel free to send it to this list.  You also may want to search the list first to see if someone else already found a solution.

Tim


From: dspac...@googlegroups.com <dspac...@googlegroups.com> on behalf of Stevenson Gossage <stevenson....@gmail.com>
Sent: Tuesday, October 19, 2021 11:41 AM
To: DSpace Technical Support <dspac...@googlegroups.com>
Subject: [dspace-tech] DSpace partially works
 
--
All messages to this mailing list should adhere to the Code of Conduct: https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
---
You received this message because you are subscribed to the Google Groups "DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dspace-tech...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dspace-tech/fdcba9f2-47bd-43c9-8ab6-42dbdbf8a40dn%40googlegroups.com.

Stevenson Gossage

unread,
Oct 19, 2021, 4:46:41 PM10/19/21
to DSpace Technical Support
Hi Thanks for the reply.

I have turned DEBUG log level but don't seem to see anything that I can recognize as relevant in the logs although there are lots of error in solr accessible in the UI here: http://ospr.link:8983/solr/#/~logging 
I have included the following below:

1) Our configuration: (local.cfg, httpd.conf, server.xml, environment.prod.ts)
2) Build output from executing yarn run build:prod
3) output from Pm2 start angular.json
4) snippets from the logfiles

Each of the above sections are separated by the following:

*****************************************************************************************************************************************************************************************************************************************
*****************************************************************************************************************************************************************************************************************************************
*****************************************************************************************************************************************************************************************************************************************
*****************************************************************************************************************************************************************************************************************************************

DSpace local.cfg

dspace.dir=/opt/ospr/dspace
dspace.server.url = https://www.ospr.link/server
dspace.ui.url = https://www.ospr.link
dspace.name = Open Science Publication Repository (OSPR.link)
db.url = jdbc:postgresql://localhost:5432/dspace
db.driver = org.postgresql.Driver
db.dialect = org.dspace.storage.rdbms.hibernate.postgres.DSpacePostgreSQL82Dialect


DSpace Angular environment.prod.ts

export const environment{
  ui: {
      ssl: false,
      host: 'localhost',
      port: 4000,
      nameSpace: '/',
      baseUrl: "http://localhost"
  },
  rest: {
      ssl: true,
      host: 'www.ospr.link',
      port: 443,
      nameSpace: '/server',
      baseUrl: "https://www.ospr.link/server"
  }
 }
;

Apache HTTPD httpd.conf

<VirtualHost *:80>
    DocumentRoot "/var/www/html"
    ServerName "ospr.link"
    ServerAlias "www.ospr.link"
    RewriteEngine on
    RewriteCond %{SERVER_NAME} =ospr.link [OR]
    RewriteCond %{SERVER_NAME} =www.ospr.link
    RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>

<VirtualHost _default_:443>
    SSLEngine on
    SSLCertificateFile /etc/letsencrypt/live/ospr.link/fullchain.pem
    SSLCertificateKeyFile /etc/letsencrypt/live/ospr.link/privkey.pem

    # Proxy all HTTPS requests to "/server" from Apache to Tomcat via AJP connector
    ProxyPass /server ajp://localhost:8009/server
    ProxyPassReverse /server ajp://localhost:8009/server

    # Prox all HTTPS requests from Apache to PM2 on port 4000
    ProxyPass / http://0.0.0.0:4000/
    ProxyPassReverse / http://0.0.0.0:4000/
</VirtualHost>


tomcat : server.xml

    <Connector port="8080"
             minSpareThreads="25"
             enableLookups="false"
             redirectPort="8443"
             connectionTimeout="20000"
             disableUploadTimeout="true"
             URIEncoding="UTF-8"/>

    <Connector protocol="AJP/1.3"
             port="8009"
             redirectPort="8443"
             secretRequired="false"
             URIEncoding="UTF-8"/>


*****************************************************************************************************************************************************************************************************************************************
*****************************************************************************************************************************************************************************************************************************************
*****************************************************************************************************************************************************************************************************************************************
*****************************************************************************************************************************************************************************************************************************************


Frontend Build output:
yarn run build:prod
yarn run v1.22.13
$ yarn run config:prod
$ ts-node --project ./tsconfig.ts-node.json scripts/set-env.ts --prod
Building production environment
No specific environment file found for --prod
Angular environment.ts file generated correctly at ./src/environments/environment.ts

$ yarn run build:ssr
$ yarn run build:client-and-server-bundles && yarn run compile:server
$ ng build --prod && ng run dspace-angular:server:production --bundleDependencies true
10% building 8/8 modules 0 active(node:27679) [DEP0148] DeprecationWarning: Use of deprecated folder mapping "./" in the "exports" field module resolution of the package at /opt/ospr/dspace-angular/node_modules/tslib/package.json.
Update this package.json to use a subpath pattern like "./*".
(Use `node --trace-deprecation ...` to show where the warning was created)
Generating ES5 bundles for differential loading...
ES5 bundle generation complete.

chunk {15} polyfills-es2015.473cd1992a6ad138d0e6.js, polyfills-es2015.473cd1992a6ad138d0e6.js.map (polyfills) 159 kB [initial] [rendered]
chunk {16} polyfills-es5.2690e6af85860f3fd13f.js, polyfills-es5.2690e6af85860f3fd13f.js.map (polyfills-es5) 252 kB [initial] [rendered]
chunk {0} common-es2015.50ec3ee49d4beb111037.js, common-es2015.50ec3ee49d4beb111037.js.map (common) 51.2 kB  [rendered]
chunk {0} common-es5.50ec3ee49d4beb111037.js, common-es5.50ec3ee49d4beb111037.js.map (common) 56 kB  [rendered]
chunk {1} 1-es2015.d703d3bb4a3d63aa339f.js, 1-es2015.d703d3bb4a3d63aa339f.js.map () 166 kB  [rendered]
chunk {1} 1-es5.d703d3bb4a3d63aa339f.js, 1-es5.d703d3bb4a3d63aa339f.js.map () 171 kB  [rendered]
chunk {2} runtime-es2015.22a7e03d92e5e4c5ea25.js, runtime-es2015.22a7e03d92e5e4c5ea25.js.map (runtime) 5.14 kB [entry] [rendered]
chunk {2} runtime-es5.22a7e03d92e5e4c5ea25.js, runtime-es5.22a7e03d92e5e4c5ea25.js.map (runtime) 5.13 kB [entry] [rendered]
chunk {3} 3-es2015.7c5775561fdb52e7259f.js, 3-es2015.7c5775561fdb52e7259f.js.map () 184 kB  [rendered]
chunk {3} 3-es5.7c5775561fdb52e7259f.js, 3-es5.7c5775561fdb52e7259f.js.map () 197 kB  [rendered]
chunk {4} 4-es2015.8bbbe229010dcd706a4d.js, 4-es2015.8bbbe229010dcd706a4d.js.map () 204 kB  [rendered]
chunk {4} 4-es5.8bbbe229010dcd706a4d.js, 4-es5.8bbbe229010dcd706a4d.js.map () 218 kB  [rendered]
chunk {5} 5-es2015.f5a38ce653a291a15097.js, 5-es2015.f5a38ce653a291a15097.js.map () 52.7 kB  [rendered]
chunk {5} 5-es5.f5a38ce653a291a15097.js, 5-es5.f5a38ce653a291a15097.js.map () 55.9 kB  [rendered]
chunk {6} 6-es2015.6cb9be738851f5b5bbfb.js, 6-es2015.6cb9be738851f5b5bbfb.js.map () 16.2 kB  [rendered]
chunk {6} 6-es5.6cb9be738851f5b5bbfb.js, 6-es5.6cb9be738851f5b5bbfb.js.map () 17.2 kB  [rendered]
chunk {7} 7-es2015.385069f11ad0cc855eac.js, 7-es2015.385069f11ad0cc855eac.js.map () 19.6 kB  [rendered]
chunk {7} 7-es5.385069f11ad0cc855eac.js, 7-es5.385069f11ad0cc855eac.js.map () 20.5 kB  [rendered]
chunk {8} 8-es2015.7441a4dbfdb9e75ec502.js, 8-es2015.7441a4dbfdb9e75ec502.js.map () 119 kB  [rendered]
chunk {8} 8-es5.7441a4dbfdb9e75ec502.js, 8-es5.7441a4dbfdb9e75ec502.js.map () 126 kB  [rendered]
chunk {9} 9-es2015.8f59fce705914ca56e45.js, 9-es2015.8f59fce705914ca56e45.js.map () 4.19 kB  [rendered]
chunk {9} 9-es5.8f59fce705914ca56e45.js, 9-es5.8f59fce705914ca56e45.js.map () 6.08 kB  [rendered]
chunk {10} 10-es2015.8cbd6d24c1e87b358103.js, 10-es2015.8cbd6d24c1e87b358103.js.map () 15.8 kB  [rendered]
chunk {10} 10-es5.8cbd6d24c1e87b358103.js, 10-es5.8cbd6d24c1e87b358103.js.map () 18.1 kB  [rendered]
chunk {14} main-es2015.a43029b0935363a98ec9.js, main-es2015.a43029b0935363a98ec9.js.map (main) 3.49 MB [initial] [rendered]
chunk {14} main-es5.a43029b0935363a98ec9.js, main-es5.a43029b0935363a98ec9.js.map (main) 3.82 MB [initial] [rendered]
chunk {19} 19-es2015.0f9ae22685453020bd85.js, 19-es2015.0f9ae22685453020bd85.js.map () 32 kB  [rendered]
chunk {19} 19-es5.0f9ae22685453020bd85.js, 19-es5.0f9ae22685453020bd85.js.map () 34.8 kB  [rendered]
chunk {20} 20-es2015.38931d0271404f29cec0.js, 20-es2015.38931d0271404f29cec0.js.map () 40.5 kB  [rendered]
chunk {20} 20-es5.38931d0271404f29cec0.js, 20-es5.38931d0271404f29cec0.js.map () 44.5 kB  [rendered]
chunk {21} 21-es2015.f233ae373c1708e8e7b2.js, 21-es2015.f233ae373c1708e8e7b2.js.map () 33 kB  [rendered]
chunk {21} 21-es5.f233ae373c1708e8e7b2.js, 21-es5.f233ae373c1708e8e7b2.js.map () 35.1 kB  [rendered]
chunk {22} 22-es2015.e1aeca5e287ef6d08278.js, 22-es2015.e1aeca5e287ef6d08278.js.map () 6.06 kB  [rendered]
chunk {22} 22-es5.e1aeca5e287ef6d08278.js, 22-es5.e1aeca5e287ef6d08278.js.map () 7.97 kB  [rendered]
chunk {23} 23-es2015.7d546e6b00af729fca36.js, 23-es2015.7d546e6b00af729fca36.js.map () 21.5 kB  [rendered]
chunk {23} 23-es5.7d546e6b00af729fca36.js, 23-es5.7d546e6b00af729fca36.js.map () 25.5 kB  [rendered]
chunk {24} 24-es2015.5d3915b51584505adfde.js, 24-es2015.5d3915b51584505adfde.js.map () 6.08 kB  [rendered]
chunk {24} 24-es5.5d3915b51584505adfde.js, 24-es5.5d3915b51584505adfde.js.map () 8.35 kB  [rendered]
chunk {25} 25-es2015.437f6ebc528ea6c590f0.js, 25-es2015.437f6ebc528ea6c590f0.js.map () 44.7 kB  [rendered]
chunk {25} 25-es5.437f6ebc528ea6c590f0.js, 25-es5.437f6ebc528ea6c590f0.js.map () 48.3 kB  [rendered]
chunk {26} 26-es2015.71281818c0aa912d362a.js, 26-es2015.71281818c0aa912d362a.js.map () 33.8 kB  [rendered]
chunk {26} 26-es5.71281818c0aa912d362a.js, 26-es5.71281818c0aa912d362a.js.map () 38.1 kB  [rendered]
chunk {27} 27-es2015.f668e5db7963e0c93222.js, 27-es2015.f668e5db7963e0c93222.js.map () 5.31 kB  [rendered]
chunk {27} 27-es5.f668e5db7963e0c93222.js, 27-es5.f668e5db7963e0c93222.js.map () 7.43 kB  [rendered]
chunk {28} 28-es2015.66307c1dcc75d9d9aa91.js, 28-es2015.66307c1dcc75d9d9aa91.js.map () 8.64 kB  [rendered]
chunk {28} 28-es5.66307c1dcc75d9d9aa91.js, 28-es5.66307c1dcc75d9d9aa91.js.map () 10.3 kB  [rendered]
chunk {29} 29-es2015.91a8a05ba217cfdb9e23.js, 29-es2015.91a8a05ba217cfdb9e23.js.map () 92.6 kB  [rendered]
chunk {29} 29-es5.91a8a05ba217cfdb9e23.js, 29-es5.91a8a05ba217cfdb9e23.js.map () 99.3 kB  [rendered]
chunk {30} 30-es2015.527c6705f8de96204cbb.js, 30-es2015.527c6705f8de96204cbb.js.map () 3.01 kB  [rendered]
chunk {30} 30-es5.527c6705f8de96204cbb.js, 30-es5.527c6705f8de96204cbb.js.map () 4.65 kB  [rendered]
chunk {31} 31-es2015.2aa8f9c80f1add0c5e41.js, 31-es2015.2aa8f9c80f1add0c5e41.js.map () 68.7 kB  [rendered]
chunk {31} 31-es5.2aa8f9c80f1add0c5e41.js, 31-es5.2aa8f9c80f1add0c5e41.js.map () 73.4 kB  [rendered]
chunk {32} 32-es2015.2191b8e26a810a374708.js, 32-es2015.2191b8e26a810a374708.js.map () 1.92 kB  [rendered]
chunk {32} 32-es5.2191b8e26a810a374708.js, 32-es5.2191b8e26a810a374708.js.map () 2.37 kB  [rendered]
chunk {33} 33-es2015.2cf568f9239b8fa6a4bf.js, 33-es2015.2cf568f9239b8fa6a4bf.js.map () 1.96 kB  [rendered]
chunk {33} 33-es5.2cf568f9239b8fa6a4bf.js, 33-es5.2cf568f9239b8fa6a4bf.js.map () 2.41 kB  [rendered]
chunk {34} 34-es2015.58ade65339aa42265c03.js, 34-es2015.58ade65339aa42265c03.js.map () 25.8 kB  [rendered]
chunk {34} 34-es5.58ade65339aa42265c03.js, 34-es5.58ade65339aa42265c03.js.map () 27.7 kB  [rendered]
chunk {35} 35-es2015.f5d326e2e40fb2ee42b3.js, 35-es2015.f5d326e2e40fb2ee42b3.js.map () 1.18 kB  [rendered]
chunk {35} 35-es5.f5d326e2e40fb2ee42b3.js, 35-es5.f5d326e2e40fb2ee42b3.js.map () 1.64 kB  [rendered]
chunk {36} 36-es2015.320d29a3bcf4e75cd7b1.js, 36-es2015.320d29a3bcf4e75cd7b1.js.map () 13 kB  [rendered]
chunk {36} 36-es5.320d29a3bcf4e75cd7b1.js, 36-es5.320d29a3bcf4e75cd7b1.js.map () 14.9 kB  [rendered]
chunk {37} 37-es2015.766dfffd054cf4041841.js, 37-es2015.766dfffd054cf4041841.js.map () 4.83 kB  [rendered]
chunk {37} 37-es5.766dfffd054cf4041841.js, 37-es5.766dfffd054cf4041841.js.map () 6.56 kB  [rendered]
chunk {38} 38-es2015.dbb9a0051eaa41a7be09.js, 38-es2015.dbb9a0051eaa41a7be09.js.map () 1.88 kB  [rendered]
chunk {38} 38-es5.dbb9a0051eaa41a7be09.js, 38-es5.dbb9a0051eaa41a7be09.js.map () 3.36 kB  [rendered]
chunk {39} 39-es2015.792a102ffaab232043ea.js, 39-es2015.792a102ffaab232043ea.js.map () 9.59 kB  [rendered]
chunk {39} 39-es5.792a102ffaab232043ea.js, 39-es5.792a102ffaab232043ea.js.map () 11.3 kB  [rendered]
chunk {40} 40-es2015.b4c0958abdcbafa80469.js, 40-es2015.b4c0958abdcbafa80469.js.map () 9.59 kB  [rendered]
chunk {40} 40-es5.b4c0958abdcbafa80469.js, 40-es5.b4c0958abdcbafa80469.js.map () 11.3 kB  [rendered]
chunk {41} 41-es2015.2343cb9f64ad54c41b69.js, 41-es2015.2343cb9f64ad54c41b69.js.map () 11.4 kB  [rendered]
chunk {41} 41-es5.2343cb9f64ad54c41b69.js, 41-es5.2343cb9f64ad54c41b69.js.map () 12.8 kB  [rendered]
chunk {42} 42-es2015.f631d34ac91ea2151294.js, 42-es2015.f631d34ac91ea2151294.js.map () 11.4 kB  [rendered]
chunk {42} 42-es5.f631d34ac91ea2151294.js, 42-es5.f631d34ac91ea2151294.js.map () 12.8 kB  [rendered]
chunk {43} 43-es2015.9de353fa91e1746bd4c3.js, 43-es2015.9de353fa91e1746bd4c3.js.map () 45.8 kB  [rendered]
chunk {43} 43-es5.9de353fa91e1746bd4c3.js, 43-es5.9de353fa91e1746bd4c3.js.map () 50.5 kB  [rendered]
chunk {44} 44-es2015.8e7c31a2cac1237dfd09.js, 44-es2015.8e7c31a2cac1237dfd09.js.map () 960 bytes  [rendered]
chunk {44} 44-es5.8e7c31a2cac1237dfd09.js, 44-es5.8e7c31a2cac1237dfd09.js.map () 1.04 kB  [rendered]
chunk {45} 45-es2015.c0ccb63c9d12f6305916.js, 45-es2015.c0ccb63c9d12f6305916.js.map () 5.18 kB  [rendered]
chunk {45} 45-es5.c0ccb63c9d12f6305916.js, 45-es5.c0ccb63c9d12f6305916.js.map () 5.76 kB  [rendered]
chunk {46} 46-es2015.b7d6eb3f51b7b6391f30.js, 46-es2015.b7d6eb3f51b7b6391f30.js.map () 697 bytes  [rendered]
chunk {46} 46-es5.b7d6eb3f51b7b6391f30.js, 46-es5.b7d6eb3f51b7b6391f30.js.map () 1.04 kB  [rendered]
chunk {47} 47-es2015.d84755aa603031e97d74.js, 47-es2015.d84755aa603031e97d74.js.map () 4.76 kB  [rendered]
chunk {47} 47-es5.d84755aa603031e97d74.js, 47-es5.d84755aa603031e97d74.js.map () 5.96 kB  [rendered]
chunk {48} 48-es2015.dc684cea9165f6808e17.js, 48-es2015.dc684cea9165f6808e17.js.map () 965 bytes  [rendered]
chunk {48} 48-es5.dc684cea9165f6808e17.js, 48-es5.dc684cea9165f6808e17.js.map () 2.16 kB  [rendered]
chunk {49} 49-es2015.8eea357159bed998f566.js, 49-es2015.8eea357159bed998f566.js.map () 1.16 kB  [rendered]
chunk {49} 49-es5.8eea357159bed998f566.js, 49-es5.8eea357159bed998f566.js.map () 2.38 kB  [rendered]
chunk {50} 50-es2015.32172f5bed1e7a5b0e49.js, 50-es2015.32172f5bed1e7a5b0e49.js.map () 7.66 kB  [rendered]
chunk {50} 50-es5.32172f5bed1e7a5b0e49.js, 50-es5.32172f5bed1e7a5b0e49.js.map () 8.86 kB  [rendered]
chunk {51} 51-es2015.57fc948089dd18be20e8.js, 51-es2015.57fc948089dd18be20e8.js.map () 9.38 kB  [rendered]
chunk {51} 51-es5.57fc948089dd18be20e8.js, 51-es5.57fc948089dd18be20e8.js.map () 10.6 kB  [rendered]
chunk {52} 52-es2015.e019c1e2ad8675250b17.js, 52-es2015.e019c1e2ad8675250b17.js.map () 2.13 kB  [rendered]
chunk {52} 52-es5.e019c1e2ad8675250b17.js, 52-es5.e019c1e2ad8675250b17.js.map () 3.34 kB  [rendered]
chunk {53} 53-es2015.97dafb28a22feda82a71.js, 53-es2015.97dafb28a22feda82a71.js.map () 844 bytes  [rendered]
chunk {53} 53-es5.97dafb28a22feda82a71.js, 53-es5.97dafb28a22feda82a71.js.map () 2.04 kB  [rendered]
chunk {54} 54-es2015.c684a4be12108f530a78.js, 54-es2015.c684a4be12108f530a78.js.map () 1.29 kB  [rendered]
chunk {54} 54-es5.c684a4be12108f530a78.js, 54-es5.c684a4be12108f530a78.js.map () 2.5 kB  [rendered]
chunk {55} 55-es2015.4d958b535ecf49d37b70.js, 55-es2015.4d958b535ecf49d37b70.js.map () 3.69 kB  [rendered]
chunk {55} 55-es5.4d958b535ecf49d37b70.js, 55-es5.4d958b535ecf49d37b70.js.map () 4.9 kB  [rendered]
chunk {56} 56-es2015.8fa143f41b617b2a8267.js, 56-es2015.8fa143f41b617b2a8267.js.map () 2.52 kB  [rendered]
chunk {56} 56-es5.8fa143f41b617b2a8267.js, 56-es5.8fa143f41b617b2a8267.js.map () 3.74 kB  [rendered]
chunk {57} 57-es2015.374ebd89e56ffd953207.js, 57-es2015.374ebd89e56ffd953207.js.map () 2.17 kB  [rendered]
chunk {57} 57-es5.374ebd89e56ffd953207.js, 57-es5.374ebd89e56ffd953207.js.map () 3.39 kB  [rendered]
chunk {58} 58-es2015.c7f09f387f574ecc9d55.js, 58-es2015.c7f09f387f574ecc9d55.js.map () 3.33 kB  [rendered]
chunk {58} 58-es5.c7f09f387f574ecc9d55.js, 58-es5.c7f09f387f574ecc9d55.js.map () 4.54 kB  [rendered]
chunk {59} 59-es2015.a266b954d97377aaef03.js, 59-es2015.a266b954d97377aaef03.js.map () 849 bytes  [rendered]
chunk {59} 59-es5.a266b954d97377aaef03.js, 59-es5.a266b954d97377aaef03.js.map () 2.04 kB  [rendered]
chunk {60} 60-es2015.889c4218309c0074d980.js, 60-es2015.889c4218309c0074d980.js.map () 8.59 kB  [rendered]
chunk {60} 60-es5.889c4218309c0074d980.js, 60-es5.889c4218309c0074d980.js.map () 9.79 kB  [rendered]
chunk {61} 61-es2015.f0f6d2d8af0848dfad84.js, 61-es2015.f0f6d2d8af0848dfad84.js.map () 3.66 kB  [rendered]
chunk {61} 61-es5.f0f6d2d8af0848dfad84.js, 61-es5.f0f6d2d8af0848dfad84.js.map () 4.87 kB  [rendered]
chunk {62} 62-es2015.e865aa2854f860f1a898.js, 62-es2015.e865aa2854f860f1a898.js.map () 2.01 kB  [rendered]
chunk {62} 62-es5.e865aa2854f860f1a898.js, 62-es5.e865aa2854f860f1a898.js.map () 3.23 kB  [rendered]
chunk {63} 63-es2015.ca476edcf5c86725184e.js, 63-es2015.ca476edcf5c86725184e.js.map () 1.77 kB  [rendered]
chunk {63} 63-es5.ca476edcf5c86725184e.js, 63-es5.ca476edcf5c86725184e.js.map () 2.98 kB  [rendered]
chunk {64} 64-es2015.473f478e4d455f94e017.js, 64-es2015.473f478e4d455f94e017.js.map () 1.96 kB  [rendered]
chunk {64} 64-es5.473f478e4d455f94e017.js, 64-es5.473f478e4d455f94e017.js.map () 3.17 kB  [rendered]
chunk {65} 65-es2015.4126f3b98881b2b86820.js, 65-es2015.4126f3b98881b2b86820.js.map () 8.26 kB  [rendered]
chunk {65} 65-es5.4126f3b98881b2b86820.js, 65-es5.4126f3b98881b2b86820.js.map () 9.46 kB  [rendered]
chunk {66} 66-es2015.f407478197d9d0e967dc.js, 66-es2015.f407478197d9d0e967dc.js.map () 4.05 kB  [rendered]
chunk {66} 66-es5.f407478197d9d0e967dc.js, 66-es5.f407478197d9d0e967dc.js.map () 5.26 kB  [rendered]
chunk {67} 67-es2015.f8cb8d42b2f7a1c6c132.js, 67-es2015.f8cb8d42b2f7a1c6c132.js.map () 2.12 kB  [rendered]
chunk {67} 67-es5.f8cb8d42b2f7a1c6c132.js, 67-es5.f8cb8d42b2f7a1c6c132.js.map () 3.33 kB  [rendered]
chunk {68} 68-es2015.4a0a8e452b48f2a36fab.js, 68-es2015.4a0a8e452b48f2a36fab.js.map () 588 bytes  [rendered]
chunk {68} 68-es5.4a0a8e452b48f2a36fab.js, 68-es5.4a0a8e452b48f2a36fab.js.map () 1.79 kB  [rendered]
chunk {69} 69-es2015.851ec206678ab5a33386.js, 69-es2015.851ec206678ab5a33386.js.map () 12.1 kB  [rendered]
chunk {69} 69-es5.851ec206678ab5a33386.js, 69-es5.851ec206678ab5a33386.js.map () 13.3 kB  [rendered]
chunk {70} 70-es2015.b358df1da88dcef1ce9f.js, 70-es2015.b358df1da88dcef1ce9f.js.map () 4.16 kB  [rendered]
chunk {70} 70-es5.b358df1da88dcef1ce9f.js, 70-es5.b358df1da88dcef1ce9f.js.map () 5.37 kB  [rendered]
chunk {71} 71-es2015.cbcae4218ba4659f9eab.js, 71-es2015.cbcae4218ba4659f9eab.js.map () 9.25 kB  [rendered]
chunk {71} 71-es5.cbcae4218ba4659f9eab.js, 71-es5.cbcae4218ba4659f9eab.js.map () 10.4 kB  [rendered]
chunk {72} 72-es2015.1e10ba2dad94554198d5.js, 72-es2015.1e10ba2dad94554198d5.js.map () 788 bytes  [rendered]
chunk {72} 72-es5.1e10ba2dad94554198d5.js, 72-es5.1e10ba2dad94554198d5.js.map () 1.98 kB  [rendered]
chunk {73} 73-es2015.b3558b41ec4f54410e21.js, 73-es2015.b3558b41ec4f54410e21.js.map () 4.06 kB  [rendered]
chunk {73} 73-es5.b3558b41ec4f54410e21.js, 73-es5.b3558b41ec4f54410e21.js.map () 5.27 kB  [rendered]
chunk {74} 74-es2015.d35259cea9de49dab7eb.js, 74-es2015.d35259cea9de49dab7eb.js.map () 4.06 kB  [rendered]
chunk {74} 74-es5.d35259cea9de49dab7eb.js, 74-es5.d35259cea9de49dab7eb.js.map () 5.26 kB  [rendered]
chunk {75} 75-es2015.ccebd2a52e5d3fda7d0f.js, 75-es2015.ccebd2a52e5d3fda7d0f.js.map () 4.05 kB  [rendered]
chunk {75} 75-es5.ccebd2a52e5d3fda7d0f.js, 75-es5.ccebd2a52e5d3fda7d0f.js.map () 5.25 kB  [rendered]
chunk {76} 76-es2015.bc40b65245b0aa4d4a0d.js, 76-es2015.bc40b65245b0aa4d4a0d.js.map () 4.05 kB  [rendered]
chunk {76} 76-es5.bc40b65245b0aa4d4a0d.js, 76-es5.bc40b65245b0aa4d4a0d.js.map () 5.25 kB  [rendered]
chunk {77} 77-es2015.463404a63292253228eb.js, 77-es2015.463404a63292253228eb.js.map () 1.23 kB  [rendered]
chunk {77} 77-es5.463404a63292253228eb.js, 77-es5.463404a63292253228eb.js.map () 2.45 kB  [rendered]
chunk {78} 78-es2015.abd321be6d35dbd70162.js, 78-es2015.abd321be6d35dbd70162.js.map () 7.77 kB  [rendered]
chunk {78} 78-es5.abd321be6d35dbd70162.js, 78-es5.abd321be6d35dbd70162.js.map () 8.97 kB  [rendered]
chunk {79} 79-es2015.2703e5faac7b5243017e.js, 79-es2015.2703e5faac7b5243017e.js.map () 603 bytes  [rendered]
chunk {79} 79-es5.2703e5faac7b5243017e.js, 79-es5.2703e5faac7b5243017e.js.map () 1.8 kB  [rendered]
chunk {80} 80-es2015.61d6dc1d9fa3e1cb4a65.js, 80-es2015.61d6dc1d9fa3e1cb4a65.js.map () 2.72 kB  [rendered]
chunk {80} 80-es5.61d6dc1d9fa3e1cb4a65.js, 80-es5.61d6dc1d9fa3e1cb4a65.js.map () 3.93 kB  [rendered]
chunk {81} 81-es2015.da0903a5b993fa18aeba.js, 81-es2015.da0903a5b993fa18aeba.js.map () 2.73 kB  [rendered]
chunk {81} 81-es5.da0903a5b993fa18aeba.js, 81-es5.da0903a5b993fa18aeba.js.map () 3.94 kB  [rendered]
chunk {82} 82-es2015.04e3365d341128686bf7.js, 82-es2015.04e3365d341128686bf7.js.map () 1.08 kB  [rendered]
chunk {82} 82-es5.04e3365d341128686bf7.js, 82-es5.04e3365d341128686bf7.js.map () 2.29 kB  [rendered]
chunk {83} 83-es2015.7bd0b38e3aee0535e95c.js, 83-es2015.7bd0b38e3aee0535e95c.js.map () 3.69 kB  [rendered]
chunk {83} 83-es5.7bd0b38e3aee0535e95c.js, 83-es5.7bd0b38e3aee0535e95c.js.map () 4.9 kB  [rendered]
chunk {84} 84-es2015.aba16ace8e8da55043b0.js, 84-es2015.aba16ace8e8da55043b0.js.map () 6.5 kB  [rendered]
chunk {84} 84-es5.aba16ace8e8da55043b0.js, 84-es5.aba16ace8e8da55043b0.js.map () 7.72 kB  [rendered]
chunk {85} 85-es2015.2482c168186e02d79456.js, 85-es2015.2482c168186e02d79456.js.map () 5.19 kB  [rendered]
chunk {85} 85-es5.2482c168186e02d79456.js, 85-es5.2482c168186e02d79456.js.map () 6.4 kB  [rendered]
chunk {86} 86-es2015.c60950c0a503bf5d34c5.js, 86-es2015.c60950c0a503bf5d34c5.js.map () 5.26 kB  [rendered]
chunk {86} 86-es5.c60950c0a503bf5d34c5.js, 86-es5.c60950c0a503bf5d34c5.js.map () 6.46 kB  [rendered]
chunk {87} 87-es2015.225c83c6f3291d5901b3.js, 87-es2015.225c83c6f3291d5901b3.js.map () 965 bytes  [rendered]
chunk {87} 87-es5.225c83c6f3291d5901b3.js, 87-es5.225c83c6f3291d5901b3.js.map () 2.16 kB  [rendered]
chunk {88} 88-es2015.2476d47c8069f76cb331.js, 88-es2015.2476d47c8069f76cb331.js.map () 1.17 kB  [rendered]
chunk {88} 88-es5.2476d47c8069f76cb331.js, 88-es5.2476d47c8069f76cb331.js.map () 2.38 kB  [rendered]
chunk {89} 89-es2015.0442c002aad425846475.js, 89-es2015.0442c002aad425846475.js.map () 7.65 kB  [rendered]
chunk {89} 89-es5.0442c002aad425846475.js, 89-es5.0442c002aad425846475.js.map () 8.86 kB  [rendered]
chunk {90} 90-es2015.e0bfa282fec210461a67.js, 90-es2015.e0bfa282fec210461a67.js.map () 8.34 kB  [rendered]
chunk {90} 90-es5.e0bfa282fec210461a67.js, 90-es5.e0bfa282fec210461a67.js.map () 9.56 kB  [rendered]
chunk {91} 91-es2015.ac2713cd07b9146c32cf.js, 91-es2015.ac2713cd07b9146c32cf.js.map () 2.13 kB  [rendered]
chunk {91} 91-es5.ac2713cd07b9146c32cf.js, 91-es5.ac2713cd07b9146c32cf.js.map () 3.34 kB  [rendered]
chunk {92} 92-es2015.4cf6f1971d24981e179c.js, 92-es2015.4cf6f1971d24981e179c.js.map () 844 bytes  [rendered]
chunk {92} 92-es5.4cf6f1971d24981e179c.js, 92-es5.4cf6f1971d24981e179c.js.map () 2.04 kB  [rendered]
chunk {93} 93-es2015.93900e4749810db8b270.js, 93-es2015.93900e4749810db8b270.js.map () 1.29 kB  [rendered]
chunk {93} 93-es5.93900e4749810db8b270.js, 93-es5.93900e4749810db8b270.js.map () 2.5 kB  [rendered]
chunk {94} 94-es2015.97480718c093c7125d0c.js, 94-es2015.97480718c093c7125d0c.js.map () 3.8 kB  [rendered]
chunk {94} 94-es5.97480718c093c7125d0c.js, 94-es5.97480718c093c7125d0c.js.map () 5.01 kB  [rendered]
chunk {95} 95-es2015.c08a33d50c1f8a4f9769.js, 95-es2015.c08a33d50c1f8a4f9769.js.map () 4.16 kB  [rendered]
chunk {95} 95-es5.c08a33d50c1f8a4f9769.js, 95-es5.c08a33d50c1f8a4f9769.js.map () 5.38 kB  [rendered]
chunk {96} 96-es2015.512d8db90e66ab9c4843.js, 96-es2015.512d8db90e66ab9c4843.js.map () 2.17 kB  [rendered]
chunk {96} 96-es5.512d8db90e66ab9c4843.js, 96-es5.512d8db90e66ab9c4843.js.map () 3.39 kB  [rendered]
chunk {97} 97-es2015.02a10f9674b21ecaa526.js, 97-es2015.02a10f9674b21ecaa526.js.map () 3.33 kB  [rendered]
chunk {97} 97-es5.02a10f9674b21ecaa526.js, 97-es5.02a10f9674b21ecaa526.js.map () 4.54 kB  [rendered]
chunk {98} 98-es2015.7646970f017313b8f1d4.js, 98-es2015.7646970f017313b8f1d4.js.map () 849 bytes  [rendered]
chunk {98} 98-es5.7646970f017313b8f1d4.js, 98-es5.7646970f017313b8f1d4.js.map () 2.04 kB  [rendered]
chunk {99} 99-es2015.b21e1850b647dc8539b9.js, 99-es2015.b21e1850b647dc8539b9.js.map () 8.59 kB  [rendered]
chunk {99} 99-es5.b21e1850b647dc8539b9.js, 99-es5.b21e1850b647dc8539b9.js.map () 9.79 kB  [rendered]
chunk {100} 100-es2015.2e900b9126772a9fe6b3.js, 100-es2015.2e900b9126772a9fe6b3.js.map () 3.66 kB  [rendered]
chunk {100} 100-es5.2e900b9126772a9fe6b3.js, 100-es5.2e900b9126772a9fe6b3.js.map () 4.87 kB  [rendered]
chunk {101} 101-es2015.efb076f4cb1a34aa1355.js, 101-es2015.efb076f4cb1a34aa1355.js.map () 2.01 kB  [rendered]
chunk {101} 101-es5.efb076f4cb1a34aa1355.js, 101-es5.efb076f4cb1a34aa1355.js.map () 3.23 kB  [rendered]
chunk {102} 102-es2015.09b14024c6c6084a54ce.js, 102-es2015.09b14024c6c6084a54ce.js.map () 1.77 kB  [rendered]
chunk {102} 102-es5.09b14024c6c6084a54ce.js, 102-es5.09b14024c6c6084a54ce.js.map () 2.98 kB  [rendered]
chunk {103} 103-es2015.e6b04a5c9794ac9b9bda.js, 103-es2015.e6b04a5c9794ac9b9bda.js.map () 1.96 kB  [rendered]
chunk {103} 103-es5.e6b04a5c9794ac9b9bda.js, 103-es5.e6b04a5c9794ac9b9bda.js.map () 3.17 kB  [rendered]
chunk {104} 104-es2015.d20b8618f6c8253f2686.js, 104-es2015.d20b8618f6c8253f2686.js.map () 8.26 kB  [rendered]
chunk {104} 104-es5.d20b8618f6c8253f2686.js, 104-es5.d20b8618f6c8253f2686.js.map () 9.46 kB  [rendered]
chunk {105} 105-es2015.a6ef218b684e223fda06.js, 105-es2015.a6ef218b684e223fda06.js.map () 4.08 kB  [rendered]
chunk {105} 105-es5.a6ef218b684e223fda06.js, 105-es5.a6ef218b684e223fda06.js.map () 5.29 kB  [rendered]
chunk {106} 106-es2015.978e9c4e06aecbb86913.js, 106-es2015.978e9c4e06aecbb86913.js.map () 2.12 kB  [rendered]
chunk {106} 106-es5.978e9c4e06aecbb86913.js, 106-es5.978e9c4e06aecbb86913.js.map () 3.33 kB  [rendered]
chunk {107} 107-es2015.17a873b0214359649489.js, 107-es2015.17a873b0214359649489.js.map () 590 bytes  [rendered]
chunk {107} 107-es5.17a873b0214359649489.js, 107-es5.17a873b0214359649489.js.map () 1.79 kB  [rendered]
chunk {108} 108-es2015.1af93f525286247d4a49.js, 108-es2015.1af93f525286247d4a49.js.map () 12.1 kB  [rendered]
chunk {108} 108-es5.1af93f525286247d4a49.js, 108-es5.1af93f525286247d4a49.js.map () 13.3 kB  [rendered]
chunk {109} 109-es2015.3721dd4548ad24f5c20b.js, 109-es2015.3721dd4548ad24f5c20b.js.map () 4.16 kB  [rendered]
chunk {109} 109-es5.3721dd4548ad24f5c20b.js, 109-es5.3721dd4548ad24f5c20b.js.map () 5.37 kB  [rendered]
chunk {110} 110-es2015.5c3258b769b09b8f241b.js, 110-es2015.5c3258b769b09b8f241b.js.map () 9.87 kB  [rendered]
chunk {110} 110-es5.5c3258b769b09b8f241b.js, 110-es5.5c3258b769b09b8f241b.js.map () 11.1 kB  [rendered]
chunk {111} 111-es2015.d356c0b4c379702a91c2.js, 111-es2015.d356c0b4c379702a91c2.js.map () 1.52 kB  [rendered]
chunk {111} 111-es5.d356c0b4c379702a91c2.js, 111-es5.d356c0b4c379702a91c2.js.map () 2.74 kB  [rendered]
chunk {112} 112-es2015.0c3cc066f48a1bcf2da7.js, 112-es2015.0c3cc066f48a1bcf2da7.js.map () 4.07 kB  [rendered]
chunk {112} 112-es5.0c3cc066f48a1bcf2da7.js, 112-es5.0c3cc066f48a1bcf2da7.js.map () 5.27 kB  [rendered]
chunk {113} 113-es2015.fb17b220a64d7e7dfc32.js, 113-es2015.fb17b220a64d7e7dfc32.js.map () 4.06 kB  [rendered]
chunk {113} 113-es5.fb17b220a64d7e7dfc32.js, 113-es5.fb17b220a64d7e7dfc32.js.map () 5.27 kB  [rendered]
chunk {114} 114-es2015.0e1b6131b9060f9870e0.js, 114-es2015.0e1b6131b9060f9870e0.js.map () 4.05 kB  [rendered]
chunk {114} 114-es5.0e1b6131b9060f9870e0.js, 114-es5.0e1b6131b9060f9870e0.js.map () 5.25 kB  [rendered]
chunk {115} 115-es2015.cf509ee1f88e239aa14f.js, 115-es2015.cf509ee1f88e239aa14f.js.map () 4.05 kB  [rendered]
chunk {115} 115-es5.cf509ee1f88e239aa14f.js, 115-es5.cf509ee1f88e239aa14f.js.map () 5.25 kB  [rendered]
chunk {116} 116-es2015.82ef65b5f8e494e35741.js, 116-es2015.82ef65b5f8e494e35741.js.map () 1.23 kB  [rendered]
chunk {116} 116-es5.82ef65b5f8e494e35741.js, 116-es5.82ef65b5f8e494e35741.js.map () 2.45 kB  [rendered]
chunk {117} 117-es2015.ca034fdf8aa0a664f86e.js, 117-es2015.ca034fdf8aa0a664f86e.js.map () 7.77 kB  [rendered]
chunk {117} 117-es5.ca034fdf8aa0a664f86e.js, 117-es5.ca034fdf8aa0a664f86e.js.map () 8.97 kB  [rendered]
chunk {118} 118-es2015.287afc93e654b4c83a89.js, 118-es2015.287afc93e654b4c83a89.js.map () 607 bytes  [rendered]
chunk {118} 118-es5.287afc93e654b4c83a89.js, 118-es5.287afc93e654b4c83a89.js.map () 1.81 kB  [rendered]
chunk {119} 119-es2015.8f3071cf5b6e00f4d593.js, 119-es2015.8f3071cf5b6e00f4d593.js.map () 2.72 kB  [rendered]
chunk {119} 119-es5.8f3071cf5b6e00f4d593.js, 119-es5.8f3071cf5b6e00f4d593.js.map () 3.93 kB  [rendered]
chunk {120} 120-es2015.a3c8a95d5b49f3967d81.js, 120-es2015.a3c8a95d5b49f3967d81.js.map () 2.73 kB  [rendered]
chunk {120} 120-es5.a3c8a95d5b49f3967d81.js, 120-es5.a3c8a95d5b49f3967d81.js.map () 3.94 kB  [rendered]
chunk {11} base-theme.css, base-theme.css.map (base-theme) 372 kB  [rendered]
chunk {12} custom-theme.css, custom-theme.css.map (custom-theme) 372 kB  [rendered]
chunk {13} dspace-theme.css, dspace-theme.css.map (dspace-theme) 373 kB  [rendered]
chunk {17} styles.0324863878df4752a58c.css, styles.0324863878df4752a58c.css.map (styles) 346 bytes [initial] [rendered]
chunk {18} wetoverlay-theme.css, wetoverlay-theme.css.map (wetoverlay-theme) 393 kB  [rendered]
Date: 2021-10-19T00:39:52.841Z - Hash: d5d0a62f19a0301bd450 - Time: 228799ms

WARNING in /opt/ospr/dspace-angular/src/themes/custom/app/register-page/register-email/register-email.component.ts is part of the TypeScript compilation but it's unused.
Add only entry points to the 'files' or 'include' properties in your tsconfig.

WARNING in /opt/ospr/dspace-angular/src/themes/custom/theme.module.ts is part of the TypeScript compilation but it's unused.
Add only entry points to the 'files' or 'include' properties in your tsconfig.

WARNING in /opt/ospr/dspace-angular/src/themes/dspace/theme.module.ts is part of the TypeScript compilation but it's unused.
Add only entry points to the 'files' or 'include' properties in your tsconfig.

WARNING in /opt/ospr/dspace-angular/src/themes/wetoverlay/app/item-page/simple/item-types/publication/publication.component.ts is part of the TypeScript compilation but it's unused.
Add only entry points to the 'files' or 'include' properties in your tsconfig.

WARNING in /opt/ospr/dspace-angular/src/themes/wetoverlay/app/register-page/register-email/register-email.component.ts is part of the TypeScript compilation but it's unused.
Add only entry points to the 'files' or 'include' properties in your tsconfig.

WARNING in /opt/ospr/dspace-angular/src/themes/wetoverlay/theme.module.ts is part of the TypeScript compilation but it's unused.
Add only entry points to the 'files' or 'include' properties in your tsconfig.

WARNING in /opt/ospr/dspace-angular/src/app/core/shared/search/search-configuration.service.ts depends on 'rxjs/internal/observable/of'. CommonJS or AMD dependencies can cause optimization bailouts.

WARNING in budgets: bundle initial-es2015 exceeded maximum budget. Budget 3 MB was not met by 667 kB with a total of 3.65 MB.

WARNING in budgets: bundle initial-es5 exceeded maximum budget. Budget 3 MB was not met by 1.07 MB with a total of 4.07 MB.
10% building 0/0 modules 0 active(node:27710) [DEP0148] DeprecationWarning: Use of deprecated folder mapping "./" in the "exports" field module resolution of the package at /opt/ospr/dspace-angular/node_modules/tslib/package.json.
Update this package.json to use a subpath pattern like "./*".
(Use `node --trace-deprecation ...` to show where the warning was created)
Hash: 294976cd4ff180864c5e
Time: 82024ms
Built at: 10/19/2021 12:41:20 AM
                                                              Asset       Size  Chunks                    Chunk Names
                                    assets/dspace/images/banner.jpg   1.59 MiB          [emitted]  [big]
                                             assets/fonts/README.md   85 bytes          [emitted]
                                     assets/fonts/fa-brands-400.eot    134 KiB          [emitted]
                                     assets/fonts/fa-brands-400.svg    730 KiB          [emitted]  [big]
                                     assets/fonts/fa-brands-400.ttf    133 KiB          [emitted]
                                    assets/fonts/fa-brands-400.woff     90 KiB          [emitted]
                                   assets/fonts/fa-brands-400.woff2   76.6 KiB          [emitted]
                                    assets/fonts/fa-regular-400.eot   33.5 KiB          [emitted]
                                    assets/fonts/fa-regular-400.svg    141 KiB          [emitted]
                                    assets/fonts/fa-regular-400.ttf   33.3 KiB          [emitted]
                                   assets/fonts/fa-regular-400.woff   16.4 KiB          [emitted]
                                  assets/fonts/fa-regular-400.woff2   13.2 KiB          [emitted]
                                      assets/fonts/fa-solid-900.eot    200 KiB          [emitted]
                                      assets/fonts/fa-solid-900.svg    896 KiB          [emitted]  [big]
                                      assets/fonts/fa-solid-900.ttf    200 KiB          [emitted]
                                     assets/fonts/fa-solid-900.woff    102 KiB          [emitted]
                                    assets/fonts/fa-solid-900.woff2   78.4 KiB          [emitted]
                                               assets/i18n/ar.json5    301 KiB          [emitted]  [big]
                                               assets/i18n/cs.json5    296 KiB          [emitted]  [big]
                                               assets/i18n/de.json5    273 KiB          [emitted]  [big]
                                               assets/i18n/en.json5    126 KiB          [emitted]
                                               assets/i18n/es.json5    277 KiB          [emitted]  [big]
                                               assets/i18n/fi.json5    239 KiB          [emitted]
                                               assets/i18n/fr.json5    248 KiB          [emitted]  [big]
                                               assets/i18n/hu.json5    250 KiB          [emitted]  [big]
                                               assets/i18n/ja.json5    301 KiB          [emitted]  [big]
                                               assets/i18n/lv.json5    264 KiB          [emitted]  [big]
                                               assets/i18n/nl.json5    276 KiB          [emitted]  [big]
                                               assets/i18n/pl.json5    301 KiB          [emitted]  [big]
                                            assets/i18n/pt-BR.json5    274 KiB          [emitted]  [big]
                                            assets/i18n/pt-PT.json5    255 KiB          [emitted]  [big]
                                               assets/i18n/sw.json5    301 KiB          [emitted]  [big]
                                               assets/i18n/tr.json5    301 KiB          [emitted]  [big]
                                      assets/images/Canada-logo.svg   18.8 KiB          [emitted]
                                 assets/images/dspace-logo-mini.svg   2.36 KiB          [emitted]
                                  assets/images/dspace-logo-old.png   12.5 KiB          [emitted]
                                      assets/images/dspace-logo.png   8.41 KiB          [emitted]
                                      assets/images/dspace-logo.svg   3.86 KiB          [emitted]
                                          assets/images/favicon.ico    5.3 KiB          [emitted]
                                             assets/images/flag.svg   1.15 KiB          [emitted]
                                               assets/images/gc.svg   1.27 KiB          [emitted]
                              assets/images/orgunit-placeholder.svg   1.19 KiB          [emitted]
                               assets/images/person-placeholder.svg   1.11 KiB          [emitted]
                              assets/images/project-placeholder.svg   12.3 KiB          [emitted]
                                assets/images/replacement_audio.svg   3.01 KiB          [emitted]
                             assets/images/replacement_document.svg   1.96 KiB          [emitted]
                                assets/images/replacement_image.svg   2.16 KiB          [emitted]
                                assets/images/replacement_video.svg   2.33 KiB          [emitted]
 assets/wetoverlay/fonts/gcweb_0c4a4eb7974d0a7287c93c02965f9b3f.eot   8.65 KiB          [emitted]
 assets/wetoverlay/fonts/gcweb_0c4a4eb7974d0a7287c93c02965f9b3f.svg   41.1 KiB          [emitted]
 assets/wetoverlay/fonts/gcweb_0c4a4eb7974d0a7287c93c02965f9b3f.ttf   20.4 KiB          [emitted]
assets/wetoverlay/fonts/gcweb_0c4a4eb7974d0a7287c93c02965f9b3f.woff    4.3 KiB          [emitted]
                                    assets/wetoverlay/images/gc.svg   1.27 KiB          [emitted]
                                                         index.html  521 bytes          [emitted]
                                                            main.js   12.5 MiB       0  [emitted]  [big]  main
                                                         robots.txt   3.13 KiB          [emitted]
Entrypoint main [big] = main.js
chunk    {0} main.js (main) 12 MiB [entry] [rendered]

WARNING in /opt/ospr/dspace-angular/src/themes/custom/app/register-page/register-email/register-email.component.ts is part of the TypeScript compilation but it's unused.
Add only entry points to the 'files' or 'include' properties in your tsconfig.

WARNING in /opt/ospr/dspace-angular/src/themes/custom/theme.module.ts is part of the TypeScript compilation but it's unused.
Add only entry points to the 'files' or 'include' properties in your tsconfig.

WARNING in /opt/ospr/dspace-angular/src/themes/dspace/theme.module.ts is part of the TypeScript compilation but it's unused.
Add only entry points to the 'files' or 'include' properties in your tsconfig.

WARNING in /opt/ospr/dspace-angular/src/themes/wetoverlay/app/item-page/simple/item-types/publication/publication.component.ts is part of the TypeScript compilation but it's unused.
Add only entry points to the 'files' or 'include' properties in your tsconfig.

WARNING in /opt/ospr/dspace-angular/src/themes/wetoverlay/app/register-page/register-email/register-email.component.ts is part of the TypeScript compilation but it's unused.
Add only entry points to the 'files' or 'include' properties in your tsconfig.

WARNING in /opt/ospr/dspace-angular/src/themes/wetoverlay/theme.module.ts is part of the TypeScript compilation but it's unused.
Add only entry points to the 'files' or 'include' properties in your tsconfig.
$ webpack --config webpack.server.config.js --progress --color
[webpack-cli] Compilation finished
Hash: 7587ca1e083ffe64e4c5
Version: webpack 4.44.2
Time: 45658ms
Built at: 10/19/2021 12:42:12 AM
    Asset      Size  Chunks             Chunk Names
server.js  14.2 MiB       0  [emitted]  server
Entrypoint server = server.js
  [0] ./server.ts 8.9 KiB {0} [built]
  [1] ./node_modules/tslib/tslib.es6.js 10.5 KiB {0} [built]
  [2] ./node_modules/zone.js/dist/zone-node.js 117 KiB {0} [built]
  [4] external "fs" 42 bytes {0} [built]
  [7] ./node_modules/reflect-metadata/Reflect.js 50 KiB {0} [built]
  [8] ./node_modules/rxjs/_esm5/index.js 3.33 KiB {0} [built]
[111] ./node_modules/pem/lib/pem.js 40.3 KiB {0} [built]
[115] external "path" 42 bytes {0} [built]
[125] external "https" 42 bytes {0} [built]
[126] ./node_modules/morgan/index.js 10.5 KiB {0} [built]
[141] ./node_modules/express/index.js 224 bytes {0} [built]
[143] ./node_modules/body-parser/index.js 2.59 KiB {0} [built]
[256] ./node_modules/compression/index.js 5.84 KiB {0} [built]
[262] ./node_modules/@angular/core/fesm2015/core.js 1.22 MiB {0} [built]
[362] ./node_modules/@nguniversal/express-engine/fesm2015/tokens.js 868 bytes {0} [built]
    + 2076 hidden modules

WARNING in ./node_modules/pem/lib/pem.js 607:26-39
Critical dependency: the request of a dependency is an expression
 @ ./server.ts
Done in 379.20s.

*****************************************************************************************************************************************************************************************************************************************
*****************************************************************************************************************************************************************************************************************************************
*****************************************************************************************************************************************************************************************************************************************
*****************************************************************************************************************************************************************************************************************************************

pm2 start ../dspace-angular.json
[PM2] Applying action restartProcessId on app [dspace-angular](ids: [ 0 ])
[PM2] [dspace-angular](0) ✓
┌─────┬───────────────────┬─────────────┬─────────┬─────────┬──────────┬────────┬──────┬───────────┬──────────┬──────────┬──────────┬──────────┐
│ id  │ name              │ namespace   │ version │ mode    │ pid      │ uptime │ ↺    │ status    │ cpu      │ mem      │ user     │ watching │
├─────┼───────────────────┼─────────────┼─────────┼─────────┼──────────┼────────┼──────┼───────────┼──────────┼──────────┼──────────┼──────────┤
│ 0   │ dspace-angular    │ default     │ 0.34.0  │ fork    │ 27772    │ 0s     │ 1    │ online    │ 0%       │ 14.5mb   │ ec2-user │ disabled │
└─────┴───────────────────┴─────────────┴─────────┴─────────┴──────────┴────────┴──────┴───────────┴──────────┴──────────┴──────────┴──────────┘


*****************************************************************************************************************************************************************************************************************************************
*****************************************************************************************************************************************************************************************************************************************
*****************************************************************************************************************************************************************************************************************************************
*****************************************************************************************************************************************************************************************************************************************

output from dspase CLI:

[ec2-user@ip-172-31-18-222 dspace-angular]$ ../dspace/bin/dspace database test

Attempting to connect to database
Connected successfully!

Database Type: postgres
Database URL: jdbc:postgresql://localhost:5432/dspace
Database Schema: public
Database Username: dspace
Database Software: PostgreSQL version 13.4
Database Driver: PostgreSQL JDBC Driver version 42.2.9
PostgreSQL 'pgcrypto' extension installed/up-to-date? true (version=1.3)
FlywayDB Version: 6.5.5
[ec2-user@ip-172-31-18-222 dspace-angular]$ ../dspace/bin/dspace database info

Database Type: postgres
Database URL: jdbc:postgresql://localhost:5432/dspace
Database Schema: public
Database Username: dspace
Database Software: PostgreSQL version 13.4
Database Driver: PostgreSQL JDBC Driver version 42.2.9
PostgreSQL 'pgcrypto' extension installed/up-to-date? true (version=1.3)
FlywayDB Version: 6.5.5

+-----------+----------------+-----------------------------------------------------+----------+---------------------+----------+
| Category  | Version        | Description                                         | Type     | Installed On        | State    |
+-----------+----------------+-----------------------------------------------------+----------+---------------------+----------+
|           | 1              | << Flyway Baseline >>                               | BASELINE | 2021-09-24 15:27:12 | Baseline |
| Versioned | 1.1            | Initial DSpace 1.1 database schema                  | SQL      | 2021-09-24 15:27:12 | Success  |
| Versioned | 1.2            | Upgrade to DSpace 1.2 schema                        | SQL      | 2021-09-24 15:27:12 | Success  |
| Versioned | 1.3            | Upgrade to DSpace 1.3 schema                        | SQL      | 2021-09-24 15:27:12 | Success  |
| Versioned | 1.3.9          | Drop constraint for DSpace 1 4 schema               | JDBC     | 2021-09-24 15:27:12 | Success  |
| Versioned | 1.4            | Upgrade to DSpace 1.4 schema                        | SQL      | 2021-09-24 15:27:12 | Success  |
| Versioned | 1.5            | Upgrade to DSpace 1.5 schema                        | SQL      | 2021-09-24 15:27:12 | Success  |
| Versioned | 1.5.9          | Drop constraint for DSpace 1 6 schema               | JDBC     | 2021-09-24 15:27:12 | Success  |
| Versioned | 1.6            | Upgrade to DSpace 1.6 schema                        | SQL      | 2021-09-24 15:27:12 | Success  |
| Versioned | 1.7            | Upgrade to DSpace 1.7 schema                        | SQL      | 2021-09-24 15:27:12 | Success  |
| Versioned | 1.8            | Upgrade to DSpace 1.8 schema                        | SQL      | 2021-09-24 15:27:12 | Success  |
| Versioned | 3.0            | Upgrade to DSpace 3.x schema                        | SQL      | 2021-09-24 15:27:12 | Success  |
| Versioned | 4.0            | Upgrade to DSpace 4.x schema                        | SQL      | 2021-09-24 15:27:12 | Success  |
| Versioned | 4.9.2015.10.26 | DS-2818 registry update                             | SQL      | 2021-09-24 15:27:12 | Success  |
| Versioned | 5.0.2014.08.08 | DS-1945 Helpdesk Request a Copy                     | SQL      | 2021-09-24 15:27:12 | Success  |
| Versioned | 5.0.2014.09.25 | DS 1582 Metadata For All Objects drop constraint    | JDBC     | 2021-09-24 15:27:12 | Success  |
| Versioned | 5.0.2014.09.26 | DS-1582 Metadata For All Objects                    | SQL      | 2021-09-24 15:27:12 | Success  |
| Versioned | 5.0.2014.11.04 | Enable XMLWorkflow Migration                        | JDBC     | 2021-09-24 15:27:12 | Success  |
| Versioned | 5.6.2016.08.23 | DS-3097                                             | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 5.7.2017.04.11 | DS-3563 Index metadatavalue resource type id column | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 5.7.2017.05.05 | DS 3431 Add Policies for BasicWorkflow              | JDBC     | 2021-09-24 15:27:13 | Success  |
| Versioned | 6.0.2015.03.06 | DS 2701 Dso Uuid Migration                          | JDBC     | 2021-09-24 15:27:13 | Success  |
| Versioned | 6.0.2015.03.07 | DS-2701 Hibernate migration                         | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 6.0.2015.08.31 | DS 2701 Hibernate Workflow Migration                | JDBC     | 2021-09-24 15:27:13 | Success  |
| Versioned | 6.0.2015.09.01 | DS 2701 Enable XMLWorkflow Migration                | JDBC     | 2021-09-24 15:27:13 | Success  |
| Versioned | 6.0.2016.01.03 | DS-3024                                             | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 6.0.2016.01.26 | DS 2188 Remove DBMS Browse Tables                   | JDBC     | 2021-09-24 15:27:13 | Success  |
| Versioned | 6.0.2016.02.25 | DS-3004-slow-searching-as-admin                     | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 6.0.2016.04.01 | DS-1955 Increase embargo reason                     | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 6.0.2016.04.04 | DS-3086-OAI-Performance-fix                         | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 6.0.2016.04.14 | DS-3125-fix-bundle-bitstream-delete-rights          | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 6.0.2016.05.10 | DS-3168-fix-requestitem item id column              | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 6.0.2016.07.21 | DS-2775                                             | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 6.0.2016.07.26 | DS-3277 fix handle assignment                       | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 6.0.2016.08.23 | DS-3097                                             | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 6.1.2017.01.03 | DS 3431 Add Policies for BasicWorkflow              | JDBC     | 2021-09-24 15:27:13 | Success  |
| Versioned | 7.0.2017.10.12 | DS-3542-stateless-sessions                          | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 7.0.2018.04.03 | Upgrade Workflow Policy                             | JDBC     | 2021-09-24 15:27:13 | Success  |
| Versioned | 7.0.2018.04.16 | dspace-entities                                     | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 7.0.2018.06.07 | DS-3851-permission                                  | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 7.0.2019.05.02 | DS-4239-workflow-xml-migration                      | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 7.0.2019.06.14 | scripts-and-process                                 | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 7.0.2019.07.31 | Retrieval of name variant                           | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 7.0.2019.11.13 | relationship type copy left right                   | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 7.0.2020.01.08 | DS-626-statistics-tracker                           | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 7.0.2020.10.31 | CollectionCommunity Metadata Handle                 | JDBC     | 2021-09-24 15:27:13 | Success  |
| Versioned | 7.0.2021.01.22 | Remove basic workflow                               | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 7.0.2021.02.08 | tilted rels                                         | SQL      | 2021-09-24 15:27:13 | Success  |
| Versioned | 7.0.2021.03.18 | Move entity type to dspace schema                   | SQL      | 2021-09-24 15:27:13 | Success  |
+-----------+----------------+-----------------------------------------------------+----------+---------------------+----------+

[ec2-user@ip-172-31-18-222 dspace-angular]$ ../dspace/bin/dspace version
DSpace version:  7.1-SNAPSHOT
  SCM revision:  24daef76d9119056bd921217877ea926ab77d463
    SCM branch:  main
            OS:  Linux(amd64) version 4.14.248-189.473.amzn2.x86_64
  Applications:
     Discovery:  enabled.
           JRE:  Amazon.com Inc. version 11.0.12
   Ant version:  Apache Ant(TM) version 1.10.11 compiled on July 10 2021
 Maven version:  3.8.2
   DSpace home:  /opt/ospr/dspace

*****************************************************************************************************************************************************************************************************************************************
*****************************************************************************************************************************************************************************************************************************************
*****************************************************************************************************************************************************************************************************************************************
*****************************************************************************************************************************************************************************************************************************************



Finally here are some snippets from the logs:

 pm2 logs --lines 40
[TAILING] Tailing last 40 lines for [all] processes (change the value with --lines option)
/home/ec2-user/.pm2/pm2.log last 40 lines:
PM2        | 2021-10-17T15:52:57: PM2 log: PM2 version          : 5.1.2
PM2        | 2021-10-17T15:52:57: PM2 log: Node.js version      : 16.10.0
PM2        | 2021-10-17T15:52:57: PM2 log: Current arch         : x64
PM2        | 2021-10-17T15:52:57: PM2 log: PM2 home             : /home/ec2-user/.pm2
PM2        | 2021-10-17T15:52:57: PM2 log: PM2 PID file         : /home/ec2-user/.pm2/pm2.pid
PM2        | 2021-10-17T15:52:57: PM2 log: RPC socket file      : /home/ec2-user/.pm2/rpc.sock
PM2        | 2021-10-17T15:52:57: PM2 log: BUS socket file      : /home/ec2-user/.pm2/pub.sock
PM2        | 2021-10-17T15:52:57: PM2 log: Application log path : /home/ec2-user/.pm2/logs
PM2        | 2021-10-17T15:52:57: PM2 log: Worker Interval      : 30000
PM2        | 2021-10-17T15:52:57: PM2 log: Process dump file    : /home/ec2-user/.pm2/dump.pm2
PM2        | 2021-10-17T15:52:57: PM2 log: Concurrent actions   : 2
PM2        | 2021-10-17T15:52:57: PM2 log: SIGTERM timeout      : 1600
PM2        | 2021-10-17T15:52:57: PM2 log: ===============================================================================
PM2        | 2021-10-17T15:52:57: PM2 log: App [dspace-angular:0] starting in -fork mode-
PM2        | 2021-10-17T15:52:57: PM2 log: App [dspace-angular:0] online
PM2        | 2021-10-18T21:10:18: PM2 log: Stopping app:dspace-angular id:0
PM2        | 2021-10-18T21:10:18: PM2 log: App [dspace-angular:0] exited with code [0] via signal [SIGINT]
PM2        | 2021-10-18T21:10:18: PM2 log: pid=10665 msg=process killed
PM2        | 2021-10-18T21:10:18: PM2 log: App [dspace-angular:0] starting in -fork mode-
PM2        | 2021-10-18T21:10:18: PM2 log: App [dspace-angular:0] online
PM2        | 2021-10-18T21:25:19: PM2 log: Stopping app:dspace-angular id:0
PM2        | 2021-10-18T21:25:19: PM2 log: App [dspace-angular:0] exited with code [0] via signal [SIGINT]
PM2        | 2021-10-18T21:25:19: PM2 log: pid=24878 msg=process killed
PM2        | 2021-10-18T21:36:24: PM2 log: App [dspace-angular:0] starting in -fork mode-
PM2        | 2021-10-18T21:36:24: PM2 log: App [dspace-angular:0] online
PM2        | 2021-10-19T00:02:00: PM2 log: Stopping app:dspace-angular id:0
PM2        | 2021-10-19T00:02:00: PM2 log: App [dspace-angular:0] exited with code [0] via signal [SIGINT]
PM2        | 2021-10-19T00:02:00: PM2 log: pid=25634 msg=process killed
PM2        | 2021-10-19T00:09:34: PM2 log: App [dspace-angular:0] starting in -fork mode-
PM2        | 2021-10-19T00:09:34: PM2 log: App [dspace-angular:0] online
PM2        | 2021-10-19T00:34:31: PM2 log: Stopping app:dspace-angular id:0
PM2        | 2021-10-19T00:34:31: PM2 log: App [dspace-angular:0] exited with code [0] via signal [SIGINT]
PM2        | 2021-10-19T00:34:31: PM2 log: pid=27222 msg=process killed
PM2        | 2021-10-19T00:44:14: PM2 log: App [dspace-angular:0] starting in -fork mode-
PM2        | 2021-10-19T00:44:14: PM2 log: App [dspace-angular:0] online
PM2        | 2021-10-19T19:22:19: PM2 log: Stopping app:dspace-angular id:0
PM2        | 2021-10-19T19:22:19: PM2 log: App [dspace-angular:0] exited with code [0] via signal [SIGINT]
PM2        | 2021-10-19T19:22:19: PM2 log: pid=27772 msg=process killed
PM2        | 2021-10-19T19:22:19: PM2 log: App [dspace-angular:0] starting in -fork mode-
PM2        | 2021-10-19T19:22:19: PM2 log: App [dspace-angular:0] online

/home/ec2-user/.pm2/logs/dspace-angular-error.log last 40 lines:
0|dspace-a |     at CatchSubscriber.SimpleOuterSubscriber.notifyNext (/opt/ospr/dspace-angular/node_modules/rxjs/internal/innerSubscribe.js:69:26)
0|dspace-a |     at SimpleInnerSubscriber._next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/innerSubscribe.js:27:21)
0|dspace-a |     at SimpleInnerSubscriber.Subscriber.next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/Subscriber.js:66:18)
0|dspace-a |     at Observable._subscribe (/opt/ospr/dspace-angular/node_modules/rxjs/internal/util/subscribeToArray.js:5:20)
0|dspace-a |     at Observable._trySubscribe (/opt/ospr/dspace-angular/node_modules/rxjs/internal/Observable.js:44:25)
0|dspace-a |     at Observable.subscribe (/opt/ospr/dspace-angular/node_modules/rxjs/internal/Observable.js:30:22)
0|dspace-a |     at Object.innerSubscribe (/opt/ospr/dspace-angular/node_modules/rxjs/internal/innerSubscribe.js:102:23)
0|dspace-a | ERROR Error: undefined doesn't contain the link sites
0|dspace-a |     at MapSubscriber.project (/opt/ospr/dspace-angular/dist/server/main.js:260852:23)
0|dspace-a |     at MapSubscriber._next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/operators/map.js:49:35)
0|dspace-a |     at MapSubscriber.Subscriber.next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/Subscriber.js:66:18)
0|dspace-a |     at MapSubscriber._next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/operators/map.js:55:26)
0|dspace-a |     at MapSubscriber.Subscriber.next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/Subscriber.js:66:18)
0|dspace-a |     at TakeSubscriber._next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/operators/take.js:54:30)
0|dspace-a |     at TakeSubscriber.Subscriber.next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/Subscriber.js:66:18)
0|dspace-a |     at FilterSubscriber._next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/operators/filter.js:52:30)
0|dspace-a |     at FilterSubscriber.Subscriber.next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/Subscriber.js:66:18)
0|dspace-a |     at MapSubscriber._next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/operators/map.js:55:26)
0|dspace-a | ERROR Error: undefined doesn't contain the link sites
0|dspace-a |     at MapSubscriber.project (/opt/ospr/dspace-angular/dist/server/main.js:260852:23)
0|dspace-a |     at MapSubscriber._next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/operators/map.js:49:35)
0|dspace-a |     at MapSubscriber.Subscriber.next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/Subscriber.js:66:18)
0|dspace-a |     at MapSubscriber._next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/operators/map.js:55:26)
0|dspace-a |     at MapSubscriber.Subscriber.next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/Subscriber.js:66:18)
0|dspace-a |     at TakeSubscriber._next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/operators/take.js:54:30)
0|dspace-a |     at TakeSubscriber.Subscriber.next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/Subscriber.js:66:18)
0|dspace-a |     at FilterSubscriber._next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/operators/filter.js:52:30)
0|dspace-a |     at FilterSubscriber.Subscriber.next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/Subscriber.js:66:18)
0|dspace-a |     at MapSubscriber._next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/operators/map.js:55:26)
0|dspace-a | ERROR TypeError: authorizations.filter is not a function
0|dspace-a |     at SwitchMapSubscriber.project (/opt/ospr/dspace-angular/dist/server/main.js:91298:14)
0|dspace-a |     at SwitchMapSubscriber._next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/operators/switchMap.js:47:27)
0|dspace-a |     at SwitchMapSubscriber.Subscriber.next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/Subscriber.js:66:18)
0|dspace-a |     at CatchSubscriber.SimpleOuterSubscriber.notifyNext (/opt/ospr/dspace-angular/node_modules/rxjs/internal/innerSubscribe.js:69:26)
0|dspace-a |     at SimpleInnerSubscriber._next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/innerSubscribe.js:27:21)
0|dspace-a |     at SimpleInnerSubscriber.Subscriber.next (/opt/ospr/dspace-angular/node_modules/rxjs/internal/Subscriber.js:66:18)
0|dspace-a |     at Observable._subscribe (/opt/ospr/dspace-angular/node_modules/rxjs/internal/util/subscribeToArray.js:5:20)
0|dspace-a |     at Observable._trySubscribe (/opt/ospr/dspace-angular/node_modules/rxjs/internal/Observable.js:44:25)
0|dspace-a |     at Observable.subscribe (/opt/ospr/dspace-angular/node_modules/rxjs/internal/Observable.js:30:22)
0|dspace-a |     at Object.innerSubscribe (/opt/ospr/dspace-angular/node_modules/rxjs/internal/innerSubscribe.js:102:23)

/home/ec2-user/.pm2/logs/dspace-angular-out.log last 40 lines:
0|dspace-a | GET /93-es2015.93900e4749810db8b270.js.map 200 28.000 ms - -
0|dspace-a | GET /109-es2015.3721dd4548ad24f5c20b.js.map 200 27.300 ms - -
0|dspace-a | GET /28-es2015.66307c1dcc75d9d9aa91.js.map 200 27.032 ms - -
0|dspace-a | GET /86-es2015.c60950c0a503bf5d34c5.js.map 200 39.054 ms - -
0|dspace-a | GET /90-es2015.e0bfa282fec210461a67.js.map 200 39.589 ms - -
0|dspace-a | GET /96-es2015.512d8db90e66ab9c4843.js.map 200 44.472 ms - -
0|dspace-a | GET /polyfills-es2015.473cd1992a6ad138d0e6.js.map 200 5.256 ms - -
0|dspace-a | GET /94-es2015.97480718c093c7125d0c.js.map 200 6.139 ms - -
0|dspace-a | GET /105-es2015.a6ef218b684e223fda06.js.map 200 7.611 ms - -
0|dspace-a | GET /common-es2015.50ec3ee49d4beb111037.js.map 200 9.293 ms - -
0|dspace-a | GET /assets/css/theme.min.css 404 762.899 ms - -
0|dspace-a | GET /main-es2015.a43029b0935363a98ec9.js.map 200 27.483 ms - -
0|dspace-a | Environment: Production
0|dspace-a | GET /favicon.ico 404 430.594 ms - -
0|dspace-a | Environment: Production
0|dspace-a | GET /communities/9e76cc96-f7a2-4600-8460-ebd12c5b86ba 200 629.501 ms - -
0|dspace-a | Environment: Production
0|dspace-a | GET /styles.0324863878df4752a58c.css 200 2.759 ms - 346
0|dspace-a | GET /wetoverlay-theme.css 200 2.829 ms - -
0|dspace-a | GET /runtime-es2015.22a7e03d92e5e4c5ea25.js 200 14.194 ms - -
0|dspace-a | GET /polyfills-es2015.473cd1992a6ad138d0e6.js 200 15.893 ms - -
0|dspace-a | GET /assets/css/theme.min.css 404 455.208 ms - -
0|dspace-a | GET /assets/images/Canada-logo.svg 200 2.455 ms - -
0|dspace-a | GET /main-es2015.a43029b0935363a98ec9.js 200 4.295 ms - -
0|dspace-a | GET /common-es2015.50ec3ee49d4beb111037.js 200 2.644 ms - -
0|dspace-a | GET /assets/i18n/en.json5 200 2.373 ms - 128781
0|dspace-a | GET /20-es2015.38931d0271404f29cec0.js 200 0.818 ms - -
0|dspace-a | GET /109-es2015.3721dd4548ad24f5c20b.js 200 0.815 ms - -
0|dspace-a | GET /93-es2015.93900e4749810db8b270.js 200 2.006 ms - -
0|dspace-a | GET /86-es2015.c60950c0a503bf5d34c5.js 200 1.583 ms - -
0|dspace-a | GET /90-es2015.e0bfa282fec210461a67.js 200 7.021 ms - -
0|dspace-a | GET /89-es2015.0442c002aad425846475.js 200 0.784 ms - -
0|dspace-a | GET /94-es2015.97480718c093c7125d0c.js 200 0.783 ms - -
0|dspace-a | GET /105-es2015.a6ef218b684e223fda06.js 200 0.857 ms - -
0|dspace-a | GET /assets/fonts/fa-solid-900.woff2 200 0.817 ms - 80300
0|dspace-a | Environment: Production
0|dspace-a | GET /assets/assets/favicon.ico 404 270.983 ms - -
0|dspace-a | GET /assets/images/favicon.ico 200 1.092 ms - -
0|dspace-a | Environment: Production
0|dspace-a | GET /favicon.ico 404 477.035 ms - -

0|dspace-angular  | Environment: Production
0|dspace-angular  | GET /community-list 200 507.978 ms - -
0|dspace-angular  | Environment: Production
0|dspace-angular  | GET /styles.0324863878df4752a58c.css 200 2.393 ms - 346
0|dspace-angular  | GET /assets/images/Canada-logo.svg 200 8.267 ms - -
0|dspace-angular  | GET /runtime-es2015.22a7e03d92e5e4c5ea25.js 200 11.706 ms - -
0|dspace-angular  | GET /polyfills-es2015.473cd1992a6ad138d0e6.js 200 11.695 ms - -
0|dspace-angular  | GET /runtime-es2015.22a7e03d92e5e4c5ea25.js.map 200 86.130 ms - -
0|dspace-angular  | GET /wetoverlay-theme.css 200 9.812 ms - -
0|dspace-angular  | GET /assets/css/theme.min.css 404 611.176 ms - -
0|dspace-angular  | GET /polyfills-es2015.473cd1992a6ad138d0e6.js.map 200 10.184 ms - -
0|dspace-angular  | GET /main-es2015.a43029b0935363a98ec9.js 200 17.015 ms - -
0|dspace-angular  | GET /assets/fonts/fa-solid-900.woff2 200 0.880 ms - 80300
0|dspace-angular  | GET /main-es2015.a43029b0935363a98ec9.js.map 200 3.335 ms - -
0|dspace-angular  | GET /23-es2015.7d546e6b00af729fca36.js 200 1.583 ms - -
0|dspace-angular  | GET /assets/i18n/en.json5 200 0.907 ms - 128781
0|dspace-angular  | GET /109-es2015.3721dd4548ad24f5c20b.js 200 0.830 ms - -
0|dspace-angular  | GET /23-es2015.7d546e6b00af729fca36.js.map 200 4.786 ms - -
0|dspace-angular  | GET /93-es2015.93900e4749810db8b270.js 200 4.097 ms - -
0|dspace-angular  | GET /86-es2015.c60950c0a503bf5d34c5.js 200 6.561 ms - -
0|dspace-angular  | GET /90-es2015.e0bfa282fec210461a67.js 200 6.242 ms - -
0|dspace-angular  | GET /88-es2015.2476d47c8069f76cb331.js 200 0.832 ms - -
0|dspace-angular  | GET /109-es2015.3721dd4548ad24f5c20b.js.map 200 1.084 ms - -
0|dspace-angular  | GET /94-es2015.97480718c093c7125d0c.js 200 0.975 ms - -
0|dspace-angular  | GET /common-es2015.50ec3ee49d4beb111037.js 200 0.911 ms - -
0|dspace-angular  | GET /105-es2015.a6ef218b684e223fda06.js 200 0.813 ms - -
0|dspace-angular  | GET /93-es2015.93900e4749810db8b270.js.map 200 2.490 ms - -
0|dspace-angular  | GET /86-es2015.c60950c0a503bf5d34c5.js.map 200 2.153 ms - -
0|dspace-angular  | GET /90-es2015.e0bfa282fec210461a67.js.map 200 3.542 ms - -
0|dspace-angular  | GET /88-es2015.2476d47c8069f76cb331.js.map 200 0.709 ms - -
0|dspace-angular  | GET /94-es2015.97480718c093c7125d0c.js.map 200 0.972 ms - -
0|dspace-angular  | GET /common-es2015.50ec3ee49d4beb111037.js.map 200 1.149 ms - -
0|dspace-angular  | GET /105-es2015.a6ef218b684e223fda06.js.map 200 1.142 ms - -
0|dspace-angular  | Environment: Production
0|dspace-angular  | GET /assets/assets/favicon.ico 404 408.308 ms - -
0|dspace-angular  | GET /assets/images/favicon.ico 304 1.167 ms - -
0|dspace-angular  | Environment: Production
0|dspace-angular  | GET /browse/title 200 908.805 ms - -
0|dspace-angular  | Environment: Production
0|dspace-angular  | GET /styles.0324863878df4752a58c.css 200 16.632 ms - 346
0|dspace-angular  | GET /assets/images/Canada-logo.svg 200 38.863 ms - -
0|dspace-angular  | GET /runtime-es2015.22a7e03d92e5e4c5ea25.js 200 25.070 ms - -
0|dspace-angular  | GET /polyfills-es2015.473cd1992a6ad138d0e6.js 200 16.858 ms - -
0|dspace-angular  | GET /runtime-es2015.22a7e03d92e5e4c5ea25.js.map 200 25.556 ms - -
0|dspace-angular  | GET /wetoverlay-theme.css 200 32.636 ms - -
0|dspace-angular  | GET /assets/css/theme.min.css 404 554.851 ms - -
0|dspace-angular  | GET /polyfills-es2015.473cd1992a6ad138d0e6.js.map 200 15.998 ms - -
0|dspace-angular  | GET /main-es2015.a43029b0935363a98ec9.js 200 19.227 ms - -
0|dspace-angular  | GET /assets/fonts/fa-solid-900.woff2 200 1.209 ms - 80300
0|dspace-angular  | GET /26-es2015.71281818c0aa912d362a.js 200 1.166 ms - -
0|dspace-angular  | GET /assets/i18n/en.json5 200 0.969 ms - 128781
0|dspace-angular  | GET /109-es2015.3721dd4548ad24f5c20b.js 200 4.027 ms - -
0|dspace-angular  | GET /main-es2015.a43029b0935363a98ec9.js.map 200 9.454 ms - -
0|dspace-angular  | GET /26-es2015.71281818c0aa912d362a.js.map 200 26.828 ms - -
0|dspace-angular  | GET /86-es2015.c60950c0a503bf5d34c5.js 200 0.802 ms - -
0|dspace-angular  | GET /93-es2015.93900e4749810db8b270.js 200 0.698 ms - -
0|dspace-angular  | GET /90-es2015.e0bfa282fec210461a67.js 200 2.092 ms - -
0|dspace-angular  | GET /common-es2015.50ec3ee49d4beb111037.js 200 1.887 ms - -
0|dspace-angular  | GET /87-es2015.225c83c6f3291d5901b3.js 200 0.611 ms - 965
0|dspace-angular  | GET /109-es2015.3721dd4548ad24f5c20b.js.map 200 0.652 ms - -
0|dspace-angular  | GET /86-es2015.c60950c0a503bf5d34c5.js.map 200 0.778 ms - -
0|dspace-angular  | GET /94-es2015.97480718c093c7125d0c.js 200 0.841 ms - -
0|dspace-angular  | GET /105-es2015.a6ef218b684e223fda06.js 200 0.654 ms - -
0|dspace-angular  | GET /87-es2015.225c83c6f3291d5901b3.js.map 200 0.830 ms - -
0|dspace-angular  | GET /90-es2015.e0bfa282fec210461a67.js.map 200 1.285 ms - -
0|dspace-angular  | GET /93-es2015.93900e4749810db8b270.js.map 200 1.085 ms - -
0|dspace-angular  | Environment: Production
0|dspace-angular  | GET /assets/assets/favicon.ico 404 290.448 ms - -
0|dspace-angular  | GET /common-es2015.50ec3ee49d4beb111037.js.map 200 0.947 ms - -
0|dspace-angular  | GET /105-es2015.a6ef218b684e223fda06.js.map 200 3.137 ms - -
0|dspace-angular  | GET /94-es2015.97480718c093c7125d0c.js.map 200 1.687 ms - -

tomcat: (/usr/local/tomcat9/logs/localhost_access_log.2021-10-19.txt)

198.103.167.20 - - [19/Oct/2021:20:16:20 +0000] "GET /server/api/authn/status HTTP/1.1" 200 211
198.103.167.20 - - [19/Oct/2021:20:16:20 +0000] "GET /server/api/config/properties/google.analytics.key HTTP/1.1" 404 176
198.103.167.20 - - [19/Oct/2021:20:16:21 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=isCollectionAdmin&embed=feature HTTP/1.1$
198.103.167.20 - - [19/Oct/2021:20:16:21 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=isCommunityAdmin&embed=feature HTTP/1.1"$
198.103.167.20 - - [19/Oct/2021:20:16:21 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=administratorOf&embed=feature HTTP/1.1" $
198.103.167.20 - - [19/Oct/2021:20:16:21 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=canManageGroups&embed=feature HTTP/1.1" $
198.103.167.20 - - [19/Oct/2021:20:16:22 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=epersonRegistration&embed=feature HTTP/1$
3.98.166.179 - - [19/Oct/2021:20:16:22 +0000] "GET /server/api HTTP/1.1" 200 4682
3.98.166.179 - - [19/Oct/2021:20:16:22 +0000] "GET /server/api/authn/status HTTP/1.1" 200 211
3.98.166.179 - - [19/Oct/2021:20:16:22 +0000] "GET /server/api/core/sites HTTP/1.1" 200 471
3.98.166.179 - - [19/Oct/2021:20:16:22 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=administratorOf&embed=feature HTTP/1.1" 20$
3.98.166.179 - - [19/Oct/2021:20:16:22 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=canManageGroups&embed=feature HTTP/1.1" 20$
3.98.166.179 - - [19/Oct/2021:20:16:22 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=isCommunityAdmin&embed=feature HTTP/1.1" 2$
3.98.166.179 - - [19/Oct/2021:20:16:22 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=isCollectionAdmin&embed=feature HTTP/1.1" $
3.98.166.179 - - [19/Oct/2021:20:16:22 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=epersonRegistration&embed=feature HTTP/1.1$
3.98.166.179 - - [19/Oct/2021:20:17:00 +0000] "GET /server/api HTTP/1.1" 200 4682
3.98.166.179 - - [19/Oct/2021:20:17:00 +0000] "GET /server/api/authn/status HTTP/1.1" 200 211
3.98.166.179 - - [19/Oct/2021:20:17:00 +0000] "GET /server/api/discover/browses?size=9999 HTTP/1.1" 200 2274
3.98.166.179 - - [19/Oct/2021:20:17:00 +0000] "GET /server/api/core/sites HTTP/1.1" 200 471
3.98.166.179 - - [19/Oct/2021:20:17:00 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=administratorOf&embed=feature HTTP/1.1" 20$
3.98.166.179 - - [19/Oct/2021:20:17:00 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=isCollectionAdmin&embed=feature HTTP/1.1" $
3.98.166.179 - - [19/Oct/2021:20:17:00 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=isCommunityAdmin&embed=feature HTTP/1.1" 2$
3.98.166.179 - - [19/Oct/2021:20:17:00 +0000] "GET /server/api/discover/browses/author/entries?sort=dc.title,ASC&page=0&size=20 HTTP/1.1" 500 181
3.98.166.179 - - [19/Oct/2021:20:17:00 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=canManageGroups&embed=feature HTTP/1.1" 20$
3.98.166.179 - - [19/Oct/2021:20:17:01 +0000] "GET /server/api/discover/browses/title/items?sort=dc.title,ASC&page=0&size=20 HTTP/1.1" 500 178
3.98.166.179 - - [19/Oct/2021:20:17:01 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=epersonRegistration&embed=feature HTTP/1.1$
3.98.166.179 - - [19/Oct/2021:20:17:01 +0000] "GET /server/api HTTP/1.1" 200 4682
3.98.166.179 - - [19/Oct/2021:20:17:01 +0000] "GET /server/api/authn/status HTTP/1.1" 200 211
3.98.166.179 - - [19/Oct/2021:20:17:01 +0000] "GET /server/api/core/sites HTTP/1.1" 200 471
3.98.166.179 - - [19/Oct/2021:20:17:01 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=isCollectionAdmin&embed=feature HTTP/1.1" $
3.98.166.179 - - [19/Oct/2021:20:17:01 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=canManageGroups&embed=feature HTTP/1.1" 20$
3.98.166.179 - - [19/Oct/2021:20:17:01 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=administratorOf&embed=feature HTTP/1.1" 20$
3.98.166.179 - - [19/Oct/2021:20:17:01 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=isCommunityAdmin&embed=feature HTTP/1.1" 2$
3.98.166.179 - - [19/Oct/2021:20:17:01 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=epersonRegistration&embed=feature HTTP/1.1$
198.103.167.20 - - [19/Oct/2021:20:17:02 +0000] "GET /server/api/authn/status HTTP/1.1" 200 211
198.103.167.20 - - [19/Oct/2021:20:17:02 +0000] "GET /server/api/config/properties/google.analytics.key HTTP/1.1" 404 176
198.103.167.20 - - [19/Oct/2021:20:17:03 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=isCollectionAdmin&embed=feature HTTP/1.1$
198.103.167.20 - - [19/Oct/2021:20:17:03 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=administratorOf&embed=feature HTTP/1.1" $
198.103.167.20 - - [19/Oct/2021:20:17:03 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=isCommunityAdmin&embed=feature HTTP/1.1"$
198.103.167.20 - - [19/Oct/2021:20:17:03 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=canManageGroups&embed=feature HTTP/1.1" $
198.103.167.20 - - [19/Oct/2021:20:17:04 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=epersonRegistration&embed=feature HTTP/1$
3.98.166.179 - - [19/Oct/2021:20:17:04 +0000] "GET /server/api HTTP/1.1" 200 4682
3.98.166.179 - - [19/Oct/2021:20:17:04 +0000] "GET /server/api/authn/status HTTP/1.1" 200 211
3.98.166.179 - - [19/Oct/2021:20:17:04 +0000] "GET /server/api/core/sites HTTP/1.1" 200 471
3.98.166.179 - - [19/Oct/2021:20:17:04 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=isCommunityAdmin&embed=feature HTTP/1.1" 2$
3.98.166.179 - - [19/Oct/2021:20:17:04 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=isCollectionAdmin&embed=feature HTTP/1.1" $
3.98.166.179 - - [19/Oct/2021:20:17:04 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=canManageGroups&embed=feature HTTP/1.1" 20$
3.98.166.179 - - [19/Oct/2021:20:17:04 +0000] "GET /server/api/authz/authorizations/search/object?uri=https://www.ospr.link/server/api/core/sites/6996b748-e5bb-4b32-823e-c30fa25248d7&feature=administratorOf&embed=feature HTTP/1.1" 20$


DSpace.log

2021-10-19 13:38:16,533 WARN  unknown unknown org.dspace.servicemanager.DSpaceServiceManager @ Unable to locate bean by name or id=create-administrator. Will try to look up bean by type next.
org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'create-administrator' available
        at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanDefinition(DefaultListableBeanFactory.java:808) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE]
        at org.springframework.beans.factory.support.AbstractBeanFactory.getMergedLocalBeanDefinition(AbstractBeanFactory.java:1279) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE]
        at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:297) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE]
        at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:207) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE]
        at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1114) ~[spring-context-5.2.5.RELEASE.jar:5.2.5.RELEASE]
        at org.dspace.servicemanager.DSpaceServiceManager.getServiceByName(DSpaceServiceManager.java:426) [dspace-services-7.0.jar:7.0]
        at org.dspace.scripts.ScriptServiceImpl.getScriptConfiguration(ScriptServiceImpl.java:33) [dspace-api-7.0.jar:7.0]
        at org.dspace.app.launcher.ScriptLauncher.handleScript(ScriptLauncher.java:125) [dspace-api-7.0.jar:7.0]
        at org.dspace.app.launcher.ScriptLauncher.main(ScriptLauncher.java:98) [dspace-api-7.0.jar:7.0]
2021-10-19 13:38:16,983 INFO  unknown unknown org.dspace.storage.rdbms.DatabaseUtils @ Loading Flyway DB migrations from: classpath:org/dspace/storage/rdbms/sqlmigration/postgres, classpath:org/dspace/storage/rdbms/migration, classpa$
2021-10-19 13:38:17,011 INFO  unknown unknown org.flywaydb.core.internal.license.VersionPrinter @ Flyway Community Edition 6.5.5 by Redgate
2021-10-19 13:38:17,056 INFO  unknown unknown org.flywaydb.core.internal.database.DatabaseFactory @ Database: jdbc:postgresql://localhost:5432/dspace (PostgreSQL 13.4)
2021-10-19 13:38:17,068 WARN  unknown unknown org.flywaydb.core.internal.database.base.Database @ Flyway upgrade recommended: PostgreSQL 13.4 is newer than this version of Flyway and support has not been tested. The latest supported $
2021-10-19 13:38:17,174 WARN  unknown unknown org.flywaydb.core.internal.database.base.Database @ Flyway upgrade recommended: PostgreSQL 13.4 is newer than this version of Flyway and support has not been tested. The latest supported $
2021-10-19 13:38:17,238 INFO  unknown unknown org.dspace.storage.rdbms.DatabaseUtils @ DSpace database schema is up to date
2021-10-19 13:38:17,259 INFO  unknown unknown org.dspace.event.EventServiceImpl @ EventService dispatcher pool initialized
2021-10-19 13:38:17,431 INFO  unknown unknown org.hibernate.Version @ HHH000412: Hibernate Core {5.4.10.Final}
2021-10-19 13:38:17,760 WARN  unknown unknown org.hibernate.orm.deprecation @ HHH020100: The Ehcache second-level cache provider for Hibernate is deprecated.  See https://hibernate.atlassian.net/browse/HHH-12441 for details.
2021-10-19 13:38:17,779 INFO  unknown unknown org.hibernate.annotations.common.Version @ HCANN000001: Hibernate Commons Annotations {5.1.0.Final}
2021-10-19 13:38:17,960 INFO  unknown unknown org.hibernate.dialect.Dialect @ HHH000400: Using dialect: org.dspace.storage.rdbms.hibernate.postgres.DSpacePostgreSQL82Dialect
2021-10-19 13:38:18,345 WARN  unknown unknown org.hibernate.cfg.annotations.EntityBinder @ HHH000482: @org.hibernate.annotations.Cache used on a non-root entity: ignored for [org.dspace.content.Collection]. Please see the Hibernate d$
2021-10-19 13:38:18,352 WARN  unknown unknown org.hibernate.cfg.annotations.EntityBinder @ HHH000482: @org.hibernate.annotations.Cache used on a non-root entity: ignored for [org.dspace.content.Community]. Please see the Hibernate do$
2021-10-19 13:38:18,393 WARN  unknown unknown org.hibernate.cfg.annotations.EntityBinder @ HHH000482: @org.hibernate.annotations.Cache used on a non-root entity: ignored for [org.dspace.content.Site]. Please see the Hibernate documen$
2021-10-19 13:38:18,396 WARN  unknown unknown org.hibernate.cfg.annotations.EntityBinder @ HHH000482: @org.hibernate.annotations.Cache used on a non-root entity: ignored for [org.dspace.eperson.EPerson]. Please see the Hibernate docu$
2021-10-19 13:38:18,398 WARN  unknown unknown org.hibernate.cfg.annotations.EntityBinder @ HHH000482: @org.hibernate.annotations.Cache used on a non-root entity: ignored for [org.dspace.eperson.Group]. Please see the Hibernate docume$
2021-10-19 13:38:19,056 WARN  unknown unknown org.hibernate.orm.cache @ HHH90001007: Using legacy cache name [org.hibernate.cache.spi.UpdateTimestampsCache] because configuration could not be found for cache [default-update-timestamp$
2021-10-19 13:38:19,058 WARN  unknown unknown org.hibernate.orm.cache @ HHH90001007: Using legacy cache name [org.hibernate.cache.internal.StandardQueryCache] because configuration could not be found for cache [default-query-results-$
2021-10-19 13:38:19,120 INFO  unknown unknown org.hibernate.validator.internal.util.Version @ HV000001: Hibernate Validator 6.0.18.Final
2021-10-19 13:38:31,673 INFO  unknown unknown org.springframework.cache.ehcache.EhCacheManagerFactoryBean @ Shutting down EhCache CacheManager 'org.dspace.services'
2021-10-19 13:38:36,437 INFO  unknown unknown org.apache.commons.beanutils.FluentPropertyBeanIntrospector @ Error when creating PropertyDescriptor for public final void org.apache.commons.configuration2.AbstractConfiguration.setPrope$
2021-10-19 13:38:36,950 INFO  unknown unknown org.apache.commons.beanutils.FluentPropertyBeanIntrospector @ Error when creating PropertyDescriptor for public final void org.apache.commons.configuration2.AbstractConfiguration.setPrope$
2021-10-19 13:38:36,990 INFO  unknown unknown org.apache.commons.beanutils.FluentPropertyBeanIntrospector @ Error when creating PropertyDescriptor for public final void org.apache.commons.configuration2.AbstractConfiguration.setPrope$
2021-10-19 13:38:36,998 INFO  unknown unknown org.apache.commons.beanutils.FluentPropertyBeanIntrospector @ Error when creating PropertyDescriptor for public final void org.apache.commons.configuration2.AbstractConfiguration.setPrope$
2021-10-19 13:38:37,006 INFO  unknown unknown org.apache.commons.beanutils.FluentPropertyBeanIntrospector @ Error when creating PropertyDescriptor for public final void org.apache.commons.configuration2.AbstractConfiguration.setPrope$
2021-10-19 13:38:37,035 INFO  unknown unknown org.apache.commons.beanutils.FluentPropertyBeanIntrospector @ Error when creating PropertyDescriptor for public final void org.apache.commons.configuration2.AbstractConfiguration.setPrope$
2021-10-19 13:38:40,272 INFO  unknown unknown org.dspace.importer.external.service.ImportService @ Loading 6 import sources.
2021-10-19 13:38:40,478 INFO  unknown unknown org.eclipse.jetty.util.log @ Logging initialized @6149ms to org.eclipse.jetty.util.log.Slf4jLog
2021-10-19 13:38:40,759 INFO  unknown unknown org.springframework.cache.ehcache.EhCacheManagerFactoryBean @ Initializing EhCache CacheManager 'org.dspace.services'
2021-10-19 13:38:42,105 INFO  unknown unknown org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor @ Autowired annotation is not supported on static methods: public static void org.dspace.rdf.storage.DOIU$
2021-10-19 13:38:42,121 INFO  unknown unknown org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor @ Autowired annotation is not supported on static methods: public static void org.dspace.rdf.storage.DOIH$
2021-10-19 13:38:42,501 WARN  unknown unknown org.dspace.servicemanager.DSpaceServiceManager @ Unable to locate bean by name or id=create-administrator. Will try to look up bean by type next.
org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'create-administrator' available
        at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanDefinition(DefaultListableBeanFactory.java:808) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE]
        at org.springframework.beans.factory.support.AbstractBeanFactory.getMergedLocalBeanDefinition(AbstractBeanFactory.java:1279) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE]
        at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:297) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE]
        at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:207) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE]
        at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1114) ~[spring-context-5.2.5.RELEASE.jar:5.2.5.RELEASE]
        at org.dspace.servicemanager.DSpaceServiceManager.getServiceByName(DSpaceServiceManager.java:426) [dspace-services-7.0.jar:7.0]
        at org.dspace.scripts.ScriptServiceImpl.getScriptConfiguration(ScriptServiceImpl.java:33) [dspace-api-7.0.jar:7.0]
        at org.dspace.app.launcher.ScriptLauncher.handleScript(ScriptLauncher.java:125) [dspace-api-7.0.jar:7.0]
        at org.dspace.app.launcher.ScriptLauncher.main(ScriptLauncher.java:98) [dspace-api-7.0.jar:7.0]
2021-10-19 13:38:42,870 INFO  unknown unknown org.dspace.storage.rdbms.DatabaseUtils @ Loading Flyway DB migrations from: classpath:org/dspace/storage/rdbms/sqlmigration/postgres, classpath:org/dspace/storage/rdbms/migration, classpa$
2021-10-19 13:38:42,895 INFO  unknown unknown org.flywaydb.core.internal.license.VersionPrinter @ Flyway Community Edition 6.5.5 by Redgate
2021-10-19 13:38:42,962 INFO  unknown unknown org.flywaydb.core.internal.database.DatabaseFactory @ Database: jdbc:postgresql://localhost:5432/dspace (PostgreSQL 13.4)
2021-10-19 13:38:42,971 WARN  unknown unknown org.flywaydb.core.internal.database.base.Database @ Flyway upgrade recommended: PostgreSQL 13.4 is newer than this version of Flyway and support has not been tested. The latest supported $
2021-10-19 13:38:43,079 WARN  unknown unknown org.flywaydb.core.internal.database.base.Database @ Flyway upgrade recommended: PostgreSQL 13.4 is newer than this version of Flyway and support has not been tested. The latest supported $
2021-10-19 13:38:43,128 INFO  unknown unknown org.dspace.storage.rdbms.DatabaseUtils @ DSpace database schema is up to date
2021-10-19 13:38:43,141 INFO  unknown unknown org.dspace.event.EventServiceImpl @ EventService dispatcher pool initialized
2021-10-19 13:38:43,293 INFO  unknown unknown org.hibernate.Version @ HHH000412: Hibernate Core {5.4.10.Final}
2021-10-19 13:38:43,667 WARN  unknown unknown org.hibernate.orm.deprecation @ HHH020100: The Ehcache second-level cache provider for Hibernate is deprecated.  See https://hibernate.atlassian.net/browse/HHH-12441 for details.
2021-10-19 13:38:43,686 INFO  unknown unknown org.hibernate.annotations.common.Version @ HCANN000001: Hibernate Commons Annotations {5.1.0.Final}
2021-10-19 13:38:43,857 INFO  unknown unknown org.hibernate.dialect.Dialect @ HHH000400: Using dialect: org.dspace.storage.rdbms.hibernate.postgres.DSpacePostgreSQL82Dialect
2021-10-19 13:38:44,316 WARN  unknown unknown org.hibernate.cfg.annotations.EntityBinder @ HHH000482: @org.hibernate.annotations.Cache used on a non-root entity: ignored for [org.dspace.content.Collection]. Please see the Hibernate d$
2021-10-19 13:38:44,320 WARN  unknown unknown org.hibernate.cfg.annotations.EntityBinder @ HHH000482: @org.hibernate.annotations.Cache used on a non-root entity: ignored for [org.dspace.content.Community]. Please see the Hibernate do$
2021-10-19 13:38:44,336 WARN  unknown unknown org.hibernate.cfg.annotations.EntityBinder @ HHH000482: @org.hibernate.annotations.Cache used on a non-root entity: ignored for [org.dspace.content.Site]. Please see the Hibernate documen$
2021-10-19 13:38:44,347 WARN  unknown unknown org.hibernate.cfg.annotations.EntityBinder @ HHH000482: @org.hibernate.annotations.Cache used on a non-root entity: ignored for [org.dspace.eperson.EPerson]. Please see the Hibernate docu$
2021-10-19 13:38:44,362 WARN  unknown unknown org.hibernate.cfg.annotations.EntityBinder @ HHH000482: @org.hibernate.annotations.Cache used on a non-root entity: ignored for [org.dspace.eperson.Group]. Please see the Hibernate docume$
2021-10-19 13:38:44,861 WARN  unknown unknown org.hibernate.orm.cache @ HHH90001007: Using legacy cache name [org.hibernate.cache.spi.UpdateTimestampsCache] because configuration could not be found for cache [default-update-timestamp$
2021-10-19 13:38:44,864 WARN  unknown unknown org.hibernate.orm.cache @ HHH90001007: Using legacy cache name [org.hibernate.cache.internal.StandardQueryCache] because configuration could not be found for cache [default-query-results-$
2021-10-19 13:38:44,947 INFO  unknown unknown org.hibernate.validator.internal.util.Version @ HV000001: Hibernate Validator 6.0.18.Final
2021-10-19 13:45:24,163 INFO  unknown unknown org.dspace.eperson.EPersonServiceImpl @ anonymous::create_eperson:eperson_id=0260d81e-2334-41e9-bfea-eb80a5a8fa9b
2021-10-19 13:45:24,287 INFO  unknown unknown org.dspace.eperson.PasswordHash @ Initialized a random number stream using NativePRNG provided by {Signature.SHA256withDSA KeySize=2048, Alg.Alias.Signature.2.16.840.1.101.3.4.3.1=SHA224w$
2021-10-19 13:45:24,325 INFO  unknown unknown org.dspace.eperson.EPersonServiceImpl @ anonymous::update_eperson:eperson_id=0260d81e-2334-41e9-bfea-eb80a5a8fa9b
2021-10-19 13:45:24,375 INFO  unknown unknown org.dspace.eperson.GroupServiceImpl @ anonymous::update_group:group_id=3acf4225-5f94-46a2-8df5-da2b02631a8c
2021-10-19 13:45:24,449 INFO  unknown unknown org.springframework.cache.ehcache.EhCacheManagerFactoryBean @ Shutting down EhCache CacheManager 'org.dspace.services'
2021-10-19 17:38:37,568 WARN  unknown unknown org.springframework.beans.factory.support.DisposableBeanAdapter @ Invocation of destroy method failed on bean with name 'sessionFactory': java.lang.BootstrapMethodError: java.lang.Illegal$
2021-10-19 17:38:37,568 INFO  unknown unknown org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor @ Shutting down ExecutorService 'dspaceRunnableThreadExecutor'
2021-10-19 17:38:37,605 INFO  unknown unknown org.springframework.cache.ehcache.EhCacheManagerFactoryBean @ Shutting down EhCache CacheManager 'org.dspace.services'
2021-10-19 17:38:37,616 INFO  unknown unknown org.quartz.core.QuartzScheduler @ Scheduler quartzScheduler_$_NON_CLUSTERED paused.
2021-10-19 17:38:37,640 INFO  unknown unknown org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler @ Shutting down ExecutorService 'taskScheduler'
2021-10-19 17:38:37,644 INFO  unknown unknown org.springframework.scheduling.quartz.SchedulerFactoryBean @ Shutting down Quartz Scheduler
2021-10-19 17:38:37,644 INFO  unknown unknown org.quartz.core.QuartzScheduler @ Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
2021-10-19 17:38:37,644 INFO  unknown unknown org.quartz.core.QuartzScheduler @ Scheduler quartzScheduler_$_NON_CLUSTERED paused.
2021-10-19 17:38:37,659 INFO  unknown unknown org.quartz.core.QuartzScheduler @ Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.



Thanks for helping,

Stevenson

Tim Donohue

unread,
Oct 19, 2021, 5:13:10 PM10/19/21
to Stevenson Gossage, DSpace Technical Support
Based on your shared Solr URL, it looks like you never installed your Solr cores?  Or maybe Solr couldn't initialize them?   See step 13 of the backend installation process: https://wiki.lyrasis.org/display/DSDOC7x/Installing+DSpace#InstallingDSpace-BackendInstallation

Without the "search" Solr core, DSpace will not be able to function properly, and you will be unable to browse or search any content in DSpace (so, most GET requests will fail, unless they happen to use the database directly instead of Solr).

Once your "search" core is installed, you should be able to "see" it by accessing the URL ${solr.server}/search/select (this should return an empty JSON result, at least until you add content, and NOT an error).  Replace "${solr.server}" with the value you have in that configuration.

Tim

Sent: Tuesday, October 19, 2021 3:46 PM

To: DSpace Technical Support <dspac...@googlegroups.com>
Subject: Re: [dspace-tech] DSpace partially works
 

Stevenson Gossage

unread,
Oct 20, 2021, 12:48:10 PM10/20/21
to DSpace Technical Support
Hi yes, exactly, the solr cores were not configured. Looks like I copied the configsets to the solr source and not the solar working directory i.e. /var/solr/data -- Once I corrected this and restarted solr - the 4 cores were there but now we still get a few errors in the solr log, looks like a formatting problem?


Thanks,
Stevenson

Stevenson Gossage

unread,
Oct 21, 2021, 8:38:57 AM10/21/21
to DSpace Technical Support
Hi All, 

Thanks for all the help so far. 
Thing seem to be working but we have errors in solr logs about "Error loading class 'solr.VelocityResponseWriter'" one for each of the 4 cores see below for logs. 
Also, all the communities created previous to getting things to an apparently working state are not discoverable via the popup dialogs for adding / editing communities/collections


solr logs:
2021-10-21 09:56:18.927 ERROR (qtp1389774257-14) [   x:oai] o.a.s.h.SolrConfigHandler ERROR:[{
    "update-queryresponsewriter":{
      "startup":"lazy",
      "name":"velocity",
      "class":"solr.VelocityResponseWriter",
      "template.base.dir":"",
      "solr.resource.loader.enabled":"true",
      "params.resource.loader.enabled":"true"},
    "errorMessages":["Error loading class 'solr.VelocityResponseWriter'"]}]
2021-10-21 09:56:18.930 INFO  (qtp1389774257-14) [   x:oai] o.a.s.c.S.Request [oai]  webapp=/solr path=/config params={} status=400 QTime=11
2021-10-21 09:56:19.323 ERROR (qtp1389774257-17) [   x:search] o.a.s.h.SolrConfigHandler Error checking plugin :  => org.apache.solr.common.SolrException: Error loading class 'solr.VelocityResponseWriter'
        at org.apache.solr.core.SolrResourceLoader.findClass(SolrResourceLoader.java:554)
org.apache.solr.common.SolrException: Error loading class 'solr.VelocityResponseWriter'
        at org.apache.solr.core.SolrResourceLoader.findClass(SolrResourceLoader.java:554) ~[?:?]
        at org.apache.solr.core.SolrResourceLoader.findClass(SolrResourceLoader.java:483) ~[?:?]
        at org.apache.solr.core.SolrCore.createInstance(SolrCore.java:840) ~[?:?]
        at org.apache.solr.core.SolrCore.createInitInstance(SolrCore.java:896) ~[?:?]
        at org.apache.solr.handler.SolrConfigHandler$Command.verifyClass(SolrConfigHandler.java:633) ~[?:?]
        at org.apache.solr.handler.SolrConfigHandler$Command.updateNamedPlugin(SolrConfigHandler.java:595) ~[?:?]
        at org.apache.solr.handler.SolrConfigHandler$Command.handleCommands(SolrConfigHandler.java:529) ~[?:?]
        at org.apache.solr.handler.SolrConfigHandler$Command.handlePOST(SolrConfigHandler.java:382) ~[?:?]
        at org.apache.solr.handler.SolrConfigHandler$Command.access$100(SolrConfigHandler.java:164) ~[?:?]
        at org.apache.solr.handler.SolrConfigHandler.handleRequestBody(SolrConfigHandler.java:141) ~[?:?]
        at org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:216) ~[?:?]
        at org.apache.solr.core.SolrCore.execute(SolrCore.java:2637) ~[?:?]
        at org.apache.solr.servlet.HttpSolrCall.execute(HttpSolrCall.java:794) ~[?:?]
        at org.apache.solr.servlet.HttpSolrCall.call(HttpSolrCall.java:567) ~[?:?]
        at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:427) ~[?:?]
        at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:357) ~[?:?]
        at org.eclipse.jetty.servlet.FilterHolder.doFilter(FilterHolder.java:201) ~[jetty-servlet-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.servlet.ServletHandler$Chain.doFilter(ServletHandler.java:1601) ~[jetty-servlet-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:548) ~[jetty-servlet-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:143) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:602) ~[jetty-security-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:235) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:1624) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1435) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:501) ~[jetty-servlet-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:1594) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1350) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:191) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
at org.eclipse.jetty.server.handler.InetAccessHandler.handle(InetAccessHandler.java:177) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.rewrite.handler.RewriteHandler.handle(RewriteHandler.java:322) ~[jetty-rewrite-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.Server.handle(Server.java:516) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:388) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:633) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:380) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:277) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) ~[jetty-io-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105) ~[jetty-io-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) ~[jetty-io-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) ~[jetty-util-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) ~[jetty-util-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) ~[jetty-util-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) ~[jetty-util-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:383) ~[jetty-util-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:882) ~[jetty-util-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1036) ~[jetty-util-9.4.41.v20210516.jar:9.4.41.v20210516]
        at java.lang.Thread.run(Thread.java:829) [?:?]
Caused by: java.lang.ClassNotFoundException: solr.VelocityResponseWriter
        at java.net.URLClassLoader.findClass(URLClassLoader.java:471) ~[?:?]
        at java.lang.ClassLoader.loadClass(ClassLoader.java:589) ~[?:?]
        at java.net.FactoryURLClassLoader.loadClass(URLClassLoader.java:899) ~[?:?]
        at java.lang.ClassLoader.loadClass(ClassLoader.java:522) ~[?:?]
        at java.lang.Class.forName0(Native Method) ~[?:?]
 at java.lang.Class.forName(Class.java:398) ~[?:?]
        at org.apache.solr.core.SolrResourceLoader.findClass(SolrResourceLoader.java:538) ~[?:?]
        ... 53 more
2021-10-21 09:56:19.323 ERROR (qtp1389774257-17) [   x:search] o.a.s.h.SolrConfigHandler ERROR:[{
    "update-queryresponsewriter":{
      "startup":"lazy",
      "name":"velocity",
      "class":"solr.VelocityResponseWriter",
      "template.base.dir":"",
      "solr.resource.loader.enabled":"true",
      "params.resource.loader.enabled":"true"},
    "errorMessages":["Error loading class 'solr.VelocityResponseWriter'"]}]
2021-10-21 09:56:19.324 INFO  (qtp1389774257-17) [   x:search] o.a.s.c.S.Request [search]  webapp=/solr path=/config params={} status=400 QTime=7
2021-10-21 09:56:19.506 ERROR (qtp1389774257-14) [   x:statistics] o.a.s.h.SolrConfigHandler Error checking plugin :  => org.apache.solr.common.SolrException: Error loading class 'solr.VelocityResponseWriter'
        at org.apache.solr.core.SolrResourceLoader.findClass(SolrResourceLoader.java:554)
org.apache.solr.common.SolrException: Error loading class 'solr.VelocityResponseWriter'
        at org.apache.solr.core.SolrResourceLoader.findClass(SolrResourceLoader.java:554) ~[?:?]
        at org.apache.solr.core.SolrResourceLoader.findClass(SolrResourceLoader.java:483) ~[?:?]
        at org.apache.solr.core.SolrCore.createInstance(SolrCore.java:840) ~[?:?]
        at org.apache.solr.core.SolrCore.createInitInstance(SolrCore.java:896) ~[?:?]
        at org.apache.solr.handler.SolrConfigHandler$Command.verifyClass(SolrConfigHandler.java:633) ~[?:?]
        at org.apache.solr.handler.SolrConfigHandler$Command.updateNamedPlugin(SolrConfigHandler.java:595) ~[?:?]
        at org.apache.solr.handler.SolrConfigHandler$Command.handleCommands(SolrConfigHandler.java:529) ~[?:?]
        at org.apache.solr.handler.SolrConfigHandler$Command.handlePOST(SolrConfigHandler.java:382) ~[?:?]
        at org.apache.solr.handler.SolrConfigHandler$Command.access$100(SolrConfigHandler.java:164) ~[?:?]
        at org.apache.solr.handler.SolrConfigHandler.handleRequestBody(SolrConfigHandler.java:141) ~[?:?]
        at org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:216) ~[?:?]
        at org.apache.solr.core.SolrCore.execute(SolrCore.java:2637) ~[?:?]
        at org.apache.solr.servlet.HttpSolrCall.execute(HttpSolrCall.java:794) ~[?:?]
        at org.apache.solr.servlet.HttpSolrCall.call(HttpSolrCall.java:567) ~[?:?]
        at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:427) ~[?:?]
        at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:357) ~[?:?]
        at org.eclipse.jetty.servlet.FilterHolder.doFilter(FilterHolder.java:201) ~[jetty-servlet-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.servlet.ServletHandler$Chain.doFilter(ServletHandler.java:1601) ~[jetty-servlet-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:548) ~[jetty-servlet-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:143) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:602) ~[jetty-security-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:235) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:1624) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1435) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:501) ~[jetty-servlet-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:1594) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1350) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:191) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.InetAccessHandler.handle(InetAccessHandler.java:177) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.rewrite.handler.RewriteHandler.handle(RewriteHandler.java:322) ~[jetty-rewrite-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.Server.handle(Server.java:516) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
 at org.eclipse.jetty.server.Server.handle(Server.java:516) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:388) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:633) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:380) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:277) ~[jetty-server-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) ~[jetty-io-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105) ~[jetty-io-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) ~[jetty-io-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) ~[jetty-util-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) ~[jetty-util-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) ~[jetty-util-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) ~[jetty-util-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:383) ~[jetty-util-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:882) ~[jetty-util-9.4.41.v20210516.jar:9.4.41.v20210516]
        at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1036) ~[jetty-util-9.4.41.v20210516.jar:9.4.41.v20210516]
        at java.lang.Thread.run(Thread.java:829) [?:?]
Caused by: java.lang.ClassNotFoundException: solr.VelocityResponseWriter
        at java.net.URLClassLoader.findClass(URLClassLoader.java:471) ~[?:?]
        at java.lang.ClassLoader.loadClass(ClassLoader.java:589) ~[?:?]
        at java.net.FactoryURLClassLoader.loadClass(URLClassLoader.java:899) ~[?:?]
        at java.lang.ClassLoader.loadClass(ClassLoader.java:522) ~[?:?]
        at java.lang.Class.forName0(Native Method) ~[?:?]
        at java.lang.Class.forName(Class.java:398) ~[?:?]
        at org.apache.solr.core.SolrResourceLoader.findClass(SolrResourceLoader.java:538) ~[?:?]
        ... 53 more
2021-10-21 09:56:19.506 ERROR (qtp1389774257-14) [   x:statistics] o.a.s.h.SolrConfigHandler ERROR:[{
    "update-queryresponsewriter":{
      "startup":"lazy",
      "name":"velocity",
      "class":"solr.VelocityResponseWriter",
      "template.base.dir":"",
      "solr.resource.loader.enabled":"true",
      "params.resource.loader.enabled":"true"},
    "errorMessages":["Error loading class 'solr.VelocityResponseWriter'"]}]
2021-10-21 09:56:19.507 INFO  (qtp1389774257-14) [   x:statistics] o.a.s.c.S.Request [statistics]  webapp=/solr path=/config params={} status=400 QTime=5
2021-10-21 09:56:34.196 INFO  (qtp1389774257-14) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=17
2021-10-21 09:57:34.171 INFO  (qtp1389774257-17) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 09:58:34.177 INFO  (qtp1389774257-14) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 09:59:34.184 INFO  (qtp1389774257-17) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 10:00:34.168 INFO  (qtp1389774257-14) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 10:01:34.164 INFO  (qtp1389774257-17) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 10:02:34.164 INFO  (qtp1389774257-14) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 10:03:34.173 INFO  (qtp1389774257-18) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 10:04:34.167 INFO  (qtp1389774257-14) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 10:05:34.190 INFO  (qtp1389774257-18) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 10:06:34.167 INFO  (qtp1389774257-14) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 10:07:34.188 INFO  (qtp1389774257-22) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 10:08:34.185 INFO  (qtp1389774257-14) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 10:09:34.177 INFO  (qtp1389774257-22) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 10:10:34.177 INFO  (qtp1389774257-17) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 10:11:34.178 INFO  (qtp1389774257-22) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 10:12:34.174 INFO  (qtp1389774257-22) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 10:13:34.176 INFO  (qtp1389774257-17) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 10:14:34.163 INFO  (qtp1389774257-22) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 10:15:34.172 INFO  (qtp1389774257-17) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 10:16:34.183 INFO  (qtp1389774257-21) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
2021-10-21 10:17:34.169 INFO  (qtp1389774257-17) [   ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&_=1634757493858&since=0} status=0 QTime=0
Test Author


Thanks,

Stevenson

Tim Donohue

unread,
Oct 21, 2021, 12:26:18 PM10/21/21
to Stevenson Gossage, DSpace Technical Support
Hi Stevenson,

That error seems to be caused by something custom on your end.  DSpace doesn't have or use a "solr.VelocityResponseWriter".  You can see that doesn't exist in our entire codebase: https://github.com/DSpace/DSpace/search?q=solr.VelocityResponseWriter

Is your Solr somehow configured to use this plugin/writer?  Here's the docs on it from Solr: https://solr.apache.org/guide/8_4/velocity-response-writer.html

Basically, it sounds like your Solr is somehow configured to use this plugin but cannot find the JAR it needs to run the plugin.  This isn't anything coming over from DSpace cores though, as none of our cores are configured to use or enable this plugin by default.

Let us know if you have other questions on this list.

Tim 

Sent: Thursday, October 21, 2021 7:38 AM

To: DSpace Technical Support <dspac...@googlegroups.com>

Stevenson Gossage

unread,
Oct 21, 2021, 1:22:53 PM10/21/21
to DSpace Technical Support
Hi ,

That is strange because so far, the only work we have done is on the front end to theme DSpace for the Government of Canada look and feel. I will look at our Solr config for each core but that all came from Step 13 in the install instructions (cp -R [dspace]/solr/* [solr]/server/solr/configsets) ... so it is very weird. I will try grepping for that on the server to see what I can find anywhere else besides the logs.

Any idea about our second issue, about not being able to add collections and sub-communities to any community that was created before we got the Solr cores running?

Thanks,

Stevenson

Tim Donohue

unread,
Oct 21, 2021, 5:08:44 PM10/21/21
to Stevenson Gossage, DSpace Technical Support
Hi Stevenson,

Regarding the second issue, it sounds like a simple re-index might fix it.  Since Solr wasn't working right, anything added before will be missing from Solr. You likely can fix that by running "./dspace index-discovery -b" as that'll rebuild your DSpace Solr "search" index from scratch and will reindex all content.

Tim

Sent: Thursday, October 21, 2021 12:22 PM

Stevenson Gossage

unread,
Oct 22, 2021, 6:09:02 AM10/22/21
to DSpace Technical Support
Good morning,

Yes thanks re-indexing did the trick thanks very much!.

Also, I've notice this  warring a lot in dev tools:

dspace-rest-response-parsing.service.ts:155

The response for 'https://www.ospr.link/server/api/discover/search?configuration=default' has the self link 'https://www.ospr.link/server/api/discover/search'. These don't match. This could mean there's an issue with the REST endpoint

Thanks for all the help,

Stevenson

Tim Donohue

unread,
Oct 22, 2021, 9:51:36 AM10/22/21
to Stevenson Gossage, DSpace Technical Support
Those warnings can be safely ignored unless you notice behavior that is "odd" or incorrect on the UI page(s) where the warning is triggered.  They are primarily a note to developers that a few REST API endpoints are still responding with incorrect "self" links (usually missing params). This behavior is not really a bug or issue though, as it's almost always harmless...it's just a minor code inconsistency we're working on cleaning up.

Tim

Sent: Friday, October 22, 2021 5:09 AM

Stevenson Gossage

unread,
Oct 22, 2021, 11:56:54 AM10/22/21
to DSpace Technical Support
awesome, that is what I thought, thanks for confirming.
Reply all
Reply to author
Forward
0 new messages