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

51 lines
2.1 KiB
Bash
Raw Normal View History

2018-01-19 20:32:16 +01:00
#!/bin/sh
2018-10-28 16:04:11 +01:00
set -ev
2020-03-18 16:51:21 +01:00
# Volumes
MARIADB_CONF="${VOLUMES_DIR}/mifosx/mariadb_conf"
MARIADB_DATA="${VOLUMES_DIR}/mifosx/mariadb_data"
MIFOSX_CONF="${VOLUMES_DIR}/mifosx/mifosx_conf"
2019-10-03 21:29:19 +02:00
# Create MariaDB instance
2020-03-18 16:51:21 +01:00
install -o 100000 -g 100000 -m 755 -d ${MARIADB_CONF}
install -o 103306 -g 103306 -m 750 -d ${MARIADB_DATA}
install -o 100000 -g 100000 -m 644 mariadb_conf/my.cnf ${MARIADB_CONF}/my.cnf
spoc-container exec mifosx-mariadb -- mysql_install_db --user=mysql --datadir=/var/lib/mysql --auth-root-authentication-method=socket --skip-test-db
# Create databases
2019-06-05 18:55:15 +02:00
export MIFOSX_PWD=$(head -c 18 /dev/urandom | base64 | tr -d '+/=')
2020-03-18 16:51:21 +01:00
spoc-container start mifosx-mariadb
envsubst <createdb.sql | spoc-container exec mifosx-mariadb -- mysql
2018-01-19 20:32:16 +01:00
# Configure Mifos X
2020-03-18 16:51:21 +01:00
install -o 100000 -g 100000 -m 755 -d ${MIFOSX_CONF}
envsubst <mifosx_conf/context.xml | install -o 100000 -g 100000 -m 644 /dev/stdin ${MIFOSX_CONF}/context.xml
install -o 100000 -g 100000 -m 644 mifosx_conf/server.xml ${MIFOSX_CONF}/server.xml
2019-12-13 21:40:27 +01:00
# Populate database
spoc-container exec mifosx -- cat /tmp/mifospltaform-tenants-first-time-install.sql | spoc-container exec mifosx-mariadb -- mysql mifosplatform-tenants
envsubst <schemapwd.sql | spoc-container exec mifosx-mariadb -- mysql mifosplatform-tenants
2018-09-13 21:10:32 +02:00
# Populate database
2020-03-18 16:51:21 +01:00
spoc-container start mifosx
2020-03-18 22:25:27 +01:00
until grep -q 'org.apache.catalina.startup.Catalina.start Server startup' /var/log/spoc/mifosx.log; do
2018-01-19 20:32:16 +01:00
sleep 1
done
2020-03-18 16:51:21 +01:00
spoc-container stop mifosx
2019-03-01 12:22:17 +01:00
# Fix missing previous_run_status column
echo 'ALTER TABLE `scheduled_email_campaign` ADD `previous_run_status` VARCHAR(10) NULL;' | spoc-container exec mifosx-mariadb -- mysql mifostenant-default
# Update admin account
export MIFOSX_ADMIN_USER="admin"
export MIFOSX_ADMIN_EMAIL="admin@example.com"
2019-06-05 18:55:15 +02:00
export MIFOSX_ADMIN_PWD=$(head -c 12 /dev/urandom | base64 | tr -d '+/=')
export MIFOSX_ADMIN_HASH=$(echo -n "${MIFOSX_ADMIN_PWD}{1}" | sha256sum | awk '{print $1}')
envsubst <adminpwd.sql | spoc-container exec mifosx-mariadb -- mysql mifostenant-default
2018-09-13 21:10:32 +02:00
# Stop services required for setup
2020-03-18 16:51:21 +01:00
spoc-container stop mifosx-mariadb
2018-10-28 19:50:35 +01:00
# Register application
2019-02-26 21:12:41 +01:00
vmmgr register-app mifosx mifosx "${MIFOSX_ADMIN_USER}" "${MIFOSX_ADMIN_PWD}"