Add 'Solr'

chris 2021-05-10 17:19:36 +02:00
parent ba795b44fe
commit bb48d9f512
1 changed files with 23 additions and 0 deletions

23
Solr.md Normal file

@ -0,0 +1,23 @@
https://gitlab.com/Daniel-KM/Omeka-S-module-SearchSolr#solr-install
```
lxc-create -n solr -t debian
lxc-start -n solr
lxc-attach -n solr
apt-get update
apt-get install wget
cd /opt
wget https://archive.apache.org/dist/lucene/solr/8.8.0/solr-8.8.0.tgz
tar zxvf solr-8.8.0.tgz solr-8.8.0/bin/install_solr_service.sh --strip-components=2
bash ./install_solr_service.sh solr-8.8.0.tgz
rm solr-8.8.0.tgz
rm install_solr_service.sh
```
```
sudo systemctl status solr
sudo systemctl stop solr
sudo systemctl start solr
```