Spotter-VM/lxc-apps/pandora/install.sh

60 lines
2.5 KiB
Bash
Raw Normal View History

2018-01-18 13:39:39 +01:00
#!/bin/sh
2018-10-28 16:04:11 +01:00
set -ev
2019-10-05 15:18:36 +02:00
# Create Postgres instance
mkdir -p /srv/pandora/postgres_data
chown -R 105432:105432 /srv/pandora/postgres_data
chmod 700 /srv/pandora/postgres_data
lxc-execute -n pandora-postgres -- initdb -D /var/lib/postgresql
# Configure Postgres
cp postgres_data/postgresql.conf /srv/pandora/postgres_data/postgresql.conf
cp postgres_data/pg_hba.conf /srv/pandora/postgres_data/pg_hba.conf
# Create PostgreSQL user and database
2019-06-05 18:55:15 +02:00
export PANDORA_PWD=$(head -c 18 /dev/urandom | base64 | tr -d '+/=')
2019-11-30 22:11:38 +01:00
service lxc-pandora-postgres start
2019-10-05 15:18:36 +02:00
envsubst <createdb.sql | lxc-attach -u 5432 -g 5432 pandora-postgres -- psql
# Create RabbitMQ directory structure
mkdir -p /srv/pandora/rabbitmq_data
chown 105672:105672 /srv/pandora/rabbitmq_data
# Configure RabbitMQ
2019-06-05 18:55:15 +02:00
export PANDORA_RABBIT_PWD=$(head -c 18 /dev/urandom | base64 | tr -d '+/=')
2019-11-30 22:11:38 +01:00
service lxc-pandora-rabbitmq start
2019-10-05 15:18:36 +02:00
lxc-attach pandora-rabbitmq -- rabbitmqctl add_user pandora ${PANDORA_RABBIT_PWD}
lxc-attach pandora-rabbitmq -- rabbitmqctl add_vhost /pandora
lxc-attach pandora-rabbitmq -- rabbitmqctl set_permissions -p /pandora pandora ".*" ".*" ".*"
# Configure Pandora
2019-10-05 15:18:36 +02:00
mkdir -p /srv/pandora/pandora_conf /srv/pandora/pandora_data
chown 108080:108080 /srv/pandora/pandora_data
cp pandora_conf/config.jsonc /srv/pandora/pandora_conf/config.jsonc
2019-10-05 15:18:36 +02:00
cp pandora_conf/gunicorn_config.py /srv/pandora/pandora_conf/gunicorn_config.py
envsubst <pandora_conf/local_settings.py >/srv/pandora/pandora_conf/local_settings.py
chown -R 108080:108080 /srv/pandora/pandora_conf
2017-11-29 21:27:11 +01:00
# Populate database
2018-09-13 22:02:25 +02:00
lxc-execute pandora -- /srv/pandora/pandora/manage.py migrate --noinput
lxc-execute pandora -- /srv/pandora/pandora/manage.py sqlfindindex
lxc-execute pandora -- /srv/pandora/pandora/manage.py sync_itemsort
lxc-execute pandora -- /srv/pandora/pandora/manage.py sync_documentsort
# Create admin account
export PANDORA_ADMIN_USER=admin
export PANDORA_ADMIN_EMAIL=admin@example.com
2019-06-05 18:55:15 +02:00
export PANDORA_ADMIN_PWD=$(head -c 12 /dev/urandom | base64 | tr -d '+/=')
2019-12-20 08:55:31 +01:00
export PANDORA_ADMIN_HASH=$(lxc-execute pandora -- sh -c "cd /srv/pandora && DJANGO_SETTINGS_MODULE=pandora.settings python3 -c \"from django.contrib.auth.hashers import make_password; print(make_password('${PANDORA_ADMIN_PWD}'))\"")
2019-10-05 15:18:36 +02:00
envsubst <adminpwd.sql | lxc-attach -u 5432 -g 5432 pandora-postgres -- psql pandora
2018-09-13 22:02:25 +02:00
# Install config update script
2019-10-05 15:18:36 +02:00
cp update-conf.sh /srv/pandora/update-conf.sh
2019-10-05 15:18:36 +02:00
# Stop services required for setup
2019-11-30 22:11:38 +01:00
service lxc-pandora-postgres stop
service lxc-pandora-rabbitmq stop
2018-10-28 19:50:35 +01:00
# Register application
2019-02-26 21:12:41 +01:00
vmmgr register-app pandora pandora "${PANDORA_ADMIN_USER}" "${PANDORA_ADMIN_PWD}"