Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel

This page addresses the most commonly-asked technical questions about DSpace. See also the EndUserFaq User FAQ page for anwers to general questions about DSpace.

...

Yes, the DSpace System Documentation includes a section on Installation. Read through this FAQ and also see Installation Guides.

If you run into any problems or have further questions, send an email to the DSpace-Tech mailing list for help.

...

You also may wish to check Installation Guides for additional installation tips/suggestions relating to specific operating systems.

...

  •  increment maxBooleanClauses; or
  • disable Access Rights Awareness Awareness

Errors connecting to Solr

Due to localhost restriction, Solr is only listening on the interface associated with the "localhost" hostname (loopback interface, usually with IP address 127.0.0.1 or ::1). Trying to access it via the FQDN hostname (e.g. http://example.com:8080/solr/statistics) will result in an error (usually status code 403 Unauthorized).
You have to configure
server=http://localhost:8080/solr/statistics in [dspace]/config/modules/solr-statistics.cfg.
Also make sure you have
solr.url=http://localhost:8080/solr/oai in [dspace]/config/modules/oai.cfg and
search.server=http://localhost:8080/solr/search in [dspace]/config/modules/discovery.cfg
All of these can be changed at once at build time by changing
solr.server=http://localhost:8080/solr in [dspace-source]/build.properties