2018-04-21 22:57:56 +02:00
|
|
|
#!/bin/sh
|
2018-10-28 16:04:11 +01:00
|
|
|
set -ev
|
2018-04-21 22:57:56 +02:00
|
|
|
|
2019-10-05 14:37:43 +02:00
|
|
|
# Create Postgres instance
|
|
|
|
mkdir -p /srv/opendatakit/postgres_data
|
|
|
|
chown -R 105432:105432 /srv/opendatakit/postgres_data
|
|
|
|
chmod 700 /srv/opendatakit/postgres_data
|
|
|
|
lxc-execute -n opendatakit-postgres -- initdb -D /var/lib/postgresql
|
|
|
|
|
|
|
|
# Configure Postgres
|
|
|
|
cp postgres_data/postgresql.conf /srv/opendatakit/postgres_data/postgresql.conf
|
|
|
|
cp postgres_data/pg_hba.conf /srv/opendatakit/postgres_data/pg_hba.conf
|
2018-04-21 22:57:56 +02:00
|
|
|
|
|
|
|
# Create databases
|
2019-06-05 18:55:15 +02:00
|
|
|
export OPENDATAKIT_PWD=$(head -c 18 /dev/urandom | base64 | tr -d '+/=')
|
2019-10-05 14:37:43 +02:00
|
|
|
export OPENDATAKITBUILD_PWD=$(head -c 18 /dev/urandom | base64 | tr -d '+/=')
|
|
|
|
service opendatakit-postgres start
|
|
|
|
envsubst <createdb.sql | lxc-attach -u 5432 -g 5432 opendatakit-postgres -- psql
|
2018-04-21 22:57:56 +02:00
|
|
|
|
|
|
|
# Configure OpenDataKit
|
2019-10-05 14:37:43 +02:00
|
|
|
mkdir -p /srv/opendatakit/odk_conf
|
2018-09-21 15:05:48 +02:00
|
|
|
export OPENDATAKIT_ADMIN_USER=admin
|
|
|
|
export OPENDATAKIT_ADMIN_REALM=spotter
|
2019-10-05 14:37:43 +02:00
|
|
|
envsubst <odk_conf/jdbc.properties >/srv/opendatakit/odk_conf/jdbc.properties
|
|
|
|
envsubst <odk_conf/security.properties >/srv/opendatakit/odk_conf/security.properties
|
|
|
|
cp odk_conf/server.xml /srv/opendatakit/odk_conf/server.xml
|
2019-10-14 07:59:06 +02:00
|
|
|
chown -R 108080:108080 /srv/opendatakit/odk_conf
|
2019-10-05 14:37:43 +02:00
|
|
|
|
|
|
|
# Configure OpenDataKit Build
|
|
|
|
export OPENDATAKITBUILD_COOKIE_SECRET=$(head -c 8 /dev/urandom | hexdump -e '"%x"')
|
|
|
|
mkdir -p /srv/opendatakit/odkbuild_conf
|
|
|
|
envsubst <odkbuild_conf/config.yml >/srv/opendatakit/odkbuild_conf/config.yml
|
|
|
|
lxc-execute opendatakit-build -- sh -c 'cd /srv/opendatakit-build; rake db:migrate'
|
|
|
|
chown -R 100000:100000 /srv/opendatakit/odkbuild_conf
|
2018-09-13 21:30:38 +02:00
|
|
|
|
2018-04-21 22:57:56 +02:00
|
|
|
# Populate database
|
2019-10-05 14:37:43 +02:00
|
|
|
service opendatakit start
|
2018-12-10 09:31:18 +01:00
|
|
|
until grep -q 'org.apache.catalina.startup.Catalina.start Server startup' /var/log/lxc/opendatakit.log; do
|
2018-04-21 22:57:56 +02:00
|
|
|
sleep 1
|
|
|
|
done
|
2019-10-05 14:37:43 +02:00
|
|
|
service opendatakit stop
|
2018-04-21 22:57:56 +02:00
|
|
|
|
|
|
|
# Update admin account
|
2019-06-05 18:55:15 +02:00
|
|
|
export OPENDATAKIT_ADMIN_PWD=$(head -c 12 /dev/urandom | base64 | tr -d '+/=')
|
2019-10-05 14:37:43 +02:00
|
|
|
export OPENDATAKIT_ADMIN_SALT=$(head -c 4 /dev/urandom | hexdump -e '"%x"') # Must be exactly 8 characters
|
2018-04-21 22:57:56 +02:00
|
|
|
export OPENDATAKIT_ADMIN_BASIC_HASH=$(echo -n "${OPENDATAKIT_ADMIN_PWD}{${OPENDATAKIT_ADMIN_SALT}}" | sha1sum | tr -d " -")
|
|
|
|
export OPENDATAKIT_ADMIN_DIGEST_HASH=$(echo -n "${OPENDATAKIT_ADMIN_USER}:${OPENDATAKIT_ADMIN_REALM}:${OPENDATAKIT_ADMIN_PWD}" | md5sum | tr -d " -")
|
2019-10-05 14:37:43 +02:00
|
|
|
envsubst <adminpwd.sql | lxc-attach -u 5432 -g 5432 opendatakit-postgres -- psql opendatakit
|
2018-07-15 21:55:35 +02:00
|
|
|
|
2018-09-20 15:45:00 +02:00
|
|
|
# Install config update script
|
2019-10-05 14:37:43 +02:00
|
|
|
cp update-conf.sh /srv/opendatakit/update-conf.sh
|
2018-09-20 15:45:00 +02:00
|
|
|
|
2019-10-05 14:37:43 +02:00
|
|
|
# Stop services required for setup
|
|
|
|
service opendatakit-postgres stop
|
2018-10-28 19:50:35 +01:00
|
|
|
|
2018-11-03 15:53:51 +01:00
|
|
|
# Register application
|
2019-02-26 21:12:41 +01:00
|
|
|
vmmgr register-app opendatakit odk "${OPENDATAKIT_ADMIN_USER}" "${OPENDATAKIT_ADMIN_PWD}"
|
2019-10-05 14:37:43 +02:00
|
|
|
vmmgr register-app opendatakit-build odkbuild
|