Installing DSpace 7 on Windows 10 is a multi-stage process because the software is split into two distinct parts: a Java-based Backend (REST API) and an Angular-based Frontend (User Interface). 1. Hardware & System Requirements Operating System: Windows 10 (64-bit recommended).
handle.canonical.url = http://localhost:8080/handle dspace 7 installation on windows 10
dspace-7.x.tar.gz (latest 7.x version)C:\dspace-srcnssm install Solr8 "C:\solr-8.11.2\bin\solr.cmd"
Arguments: start -p 8983pm2 (Node process manager):
npm install -g pm2
cd C:\dspace-src\src\main\webapp\angular
pm2 start npm --name "dspace-angular" -- start
pm2 save
pm2-startup install
yarn install
git clone https://github.com/DSpace/dspace-docker.git
cd dspace-docker
docker-compose -f docker-compose.yml up -d
cd DSpace\target\dspace-installer
mvn install -Dmirage2.on=true
| Variable | Value |
| --- | --- |
| JAVA_HOME | C:\Java\jdk-11 |
| MAVEN_HOME | C:\maven |
| DSpace_HOME | C:\dspace | Installing DSpace 7 on Windows 10 is a