Spotter-VM/solr/install.sh

14 lines
284 B
Bash
Raw Normal View History

#!/bin/sh
2018-10-28 16:04:11 +01:00
set -ev
2017-12-13 10:18:38 +01:00
2018-10-26 15:02:11 +02:00
cd $(realpath $(dirname "${0}"))/install
# Configure Solr
mkdir -p /srv/solr/data
2018-09-11 20:28:59 +02:00
cp /var/lib/lxc/solr/solr/opt/solr/server/solr/solr.xml /srv/solr/data/solr.xml
chown -R 8983:8983 /srv/solr/data
2018-09-05 22:20:24 +02:00
# Install service
2018-10-25 22:22:36 +02:00
cp etc/init.d/solr /etc/init.d/solr
2018-09-05 22:20:24 +02:00
rc-update -u