Posts

Showing posts with the label DSpace

How to Migrate DSpace 8.x to DSpace 10.x on Ubuntu (Step-by-Step Guide)

DSpace 8.x → 10.x Migration Guide Fresh Installation + Data Migration This guide follows a migration approach: install DSpace 10.x fresh and move the existing DSpace 8.x database, assetstore, configuration, and required supporting data. It is not an in-place upgrade. ⚙ Environment Reference Environment reference (fill in / confirm before running on a new box): Component Reference Old server DSpace 8.x, hostname dspace-8x New install fresh DSpace 10.x at /dspace Solr /opt/solr (Solr home: /opt/solr/server/solr ) Target DB dspace10 (Postgres 16, role dspace ) 8.x backup location /home/dspace/Downloads/Dspace_8.X_BKP/Dspace_8X._BKP_July_2026/ This is the migration approach (fresh 10.x install + move data over), not an in-place upgrade — recommended since you're skipping a major version (9.x) and already had 10.x installed fresh. Step 1 1. Backup the 8.x source (if not already done) Copy code # DB dump pg_dump -U [dspace8-db-user] -f dspace8_backup.sql [dspace8-db-nam...

How to install DSpace 9 on Ubuntu 24.04?

DSpace Installation Guide Complete guide to installing and configuring DSpace 9.1 on Ubuntu 24.04 LTS What is DSpace? DSpace is an open-source digital repository and archival software that institutions, libraries and other organisations use to manage, preserve, and disseminate research papers, documents, datasets and other scholarly or institutional digital content. It was initially developed in collaboration with MIT Libraries and Hewlett-Packard (HP) Labs in the early 2000s. How to Install DSpace 9.1 Before installing DSpace, it's important to understand that it consists of two main components that work together to provide the complete functionality and user experience: DSpace Architecture Backend (Server API) ...

How to Install DSpace 9 Backend (Server API) on Ubuntu 24.04 LTS ?

Complete DSpace Installation Guide Installation of Backend Step 1: System Preparation i. Update & Upgrade System Packages Copy code sudo apt update && sudo apt upgrade -y Purpose: Update and upgrade system packages Explanation: This command updates the package lists and upgrades all installed packages to their latest versions. The -y flag automatically confirms the upgrade process. Step 2: Install Required Dependencies i. Core Tools Copy code sudo apt install wget curl git build-essential unzip zip -y Purpose: Install core development tools Explanation: This command installs essential tools needed for software development and system administration, including wget for downloading files, curl for transferring data, git for version control, and build tools for compiling software. ii. Java Development Kit (OpenJDK 17) Copy code sudo apt...

How to Install DSpace 9 Angular Frontend (User Interface) on Ubuntu 24.04 LTS ?

Installing the DSpace Angular Frontend This guide walks through the complete process of installing and configuring the DSpace Angular frontend for your DSpace repository. Step 1: Install Node.js Using NVM Official Documentation Reference: For complete and up-to-date instructions, please refer to the Official DSpace Installation Guide . DSpace requires Node.js version v18.19+, v20.x, or v22.x for optimal performance and compatibility. For best compatibility and stability, Node.js v22.18.0 (LTS) is recommended. For more details, visit the official Node.js download page . When selecting from the dropdown on the Node.js website, choose: Version: v22.18.0 (LTS) Operating System: Linux (if you're installing on Ubuntu or another Linux distro) Installation method: nvm (Node Version Manager) Package manager: npm (included with Node.js) Copy code sudo su Purpose: Switch...