Versions Compared

Key

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

...

The most recent stable version of DSpace, recommended for production use, is available from the SourceForge 'DSpace Stable' download page. To see what's in store for the future, see Next + Release + Status.

Where can I download the DSpace open-source software?

...

  • If you've upgraded to DSpace 1.2 from a prior version, ensure that your header JSP includes the following line:
Code Block

<SCRIPT LANGUAGE="JavaScript" src="<%= request.getContextPath() %>/utils.js"></script>

...

Many people have run into trouble getting DSpace running on Redhat/Fedora Core Linux, specifically, encountering CLASSPATH errors and relating to 'libgcj'.
The easiest way to resolve this is to remove all the PM-based Java components, and install the original binary packages: Java SDK from Sun, and Ant and Tomcat from Apache.org.
To remove the PM Java stuff, do:

Code Block

rpm \-e libgcj

This will probably throw up a load of dependency errors. You'll need to remove the packages that depend on libgcj too.
Another useful list from RichardJones of packages he had to remove from Fedora Core 2:

Code Block

libgcj
gcc-java-3.3.3-7
libgcj-devel-3.3.3-7
gettext-0.14.1-2.1
gcc34-java-3.4.0-1
ant-1.5.2-26
tomcat-4.1.27-13

...

2. Change the level by changing this line:

Code Block

log4j.rootCategory=INFO, A1

to this:

Code Block

log4j.rootCategory=DEBUG, A1

...

Now you'll find there's a lot more information in dspace/log/dspace.log. You can switch on and off logging for particular DSpace classes. For example, if you just want to know about SQL queries going to the database, you could leave the main level above as INFO, and instead add the following line (then restart Tomcat):

Code Block

log4j.logger.org.dspace.storage.rdbms.DatabaseManager=DEBUG, A1

...