Stanley Laufer wrote: > The 1.5.1 documentation unfortunately does not include a section on > updating from 1.5 to 1.5.1: > > http://www.dspace.org/1_5_1Documentation/ch04.html > > Does anyone know if there's any documentation available on updating > from 1.5 to 1.5.1? > > Thanks in advance for any replies. > > > > > Stanley E. Laufer > Network Administrator > School of Library and Information Science > San Jose State University > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > DSpace-tech mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/dspace-tech > Here are our notes from updating a DSpace installation on an Ubuntu Linux 8.04 Server, hope it helps;
Updating the DSpace configuration requires not only an update of the dspace.cfg file but also an update of the DSpace compiled files. Download; # wget http://transact.dl.sourceforge.net/sourceforge/dspace/dspace-1.5.1-release.tar.gz Reconfigure the Dspace.cfg file; # vim /path/to/dspace/install/config/dspace.cfg dspace.dir = /path/to/dspace/install dspace.url = http://localhost:8180/site_name dspace.name = Your DSpace Site Name db.password = ******* db.url = jdbc:postgresql://localhost:5432/db_name default.language = en_GB assetstore.dir = /path/to/assets log.dir = /path/to/logs search.dir = /path/to/search handle.dir = /path/to/handle-server report.dir = /path/to/reports upload.temp.dir = /path/to/upload mail.server=mail.server.url mail.from.address = [EMAIL PROTECTED] mail.admin = [EMAIL PROTECTED] To compile the new version; # cd /path/to/dspace-1.5.1-release/dspace/ # sudo mvn package To update the configuration; # cd /path/to/dspace-1.5.1-release/dspace/target/dspace-1.5.1-build.dir/ # sudo ant -Dconfig=/path/to/dspace/install/config/dspace.cfg update # sudo /etc/init.d/tomcat5.5 force-reload Hope this helps. ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech

