A Reporting Tool
Just skip the H2 option, use PostgreSQL
postgres@meta:~$ psql
psql (11.5 (Debian 11.5-1+deb10u1))
Type "help" for help.
postgres=# create user metabase;
CREATE ROLE
postgres=# create database metabase with owner metabase;
CREATE DATABASE
postgres=# alter user metabase with password '01DKM9K01DXPRGJY6A4VD6HPEW';
ALTER ROLE
postgres=#
- See: https://metabase.com/docs/latest/operations-guide/configuring-application-database.html
- See: https://metabase.com/docs/latest/operations-guide/migrating-from-h2.html
Building from source will require the latest versions of NodeJS and Yarn.
curl -sL https://deb.nodesource.com/setup_11.x | bash -
apt-get install -y nodejs
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
apt-get update
apt-get install yarn
wget 'https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein'
chmod 0755 ./lein
export PATH="$PATH:$(readlink -f .)"
Some times it can leave connections open for a long time?
Get a current-ish timestamp.
UPDATE core_user SET reset_triggered = 1514706508, reset_token = 'AAA' where id = 1;
Then go to https://YOURHOSTNAME/auth/reset_password/YOURTOKEN