Arvados requires at least version 9.4 of PostgreSQL. We recommend using version 10 or newer.
When deploying on AWS, Arvados can use an Aurora RDS PostgreSQL database. Aurora Serverless is not recommended.
# dnf install postgresql-server postgresql-contrib
# postgresql-setup initdb
# sed -ri -e 's/^(host +all +all +(127\.0\.0\.1\/32|::1\/128) +)ident$/\1md5/' /var/lib/pgsql/data/pg_hba.conf
10.9.8.0/24
with your private network mask)# echo 'host all all 10.9.8.0/24 md5' | tee -a /var/lib/pgsql/data/pg_hba.conf
# systemctl enable --now postgresql
All supported versions of Debian and Ubuntu include a version of PostgreSQL you can use with Arvados.
# apt --no-install-recommends install postgresql postgresql-contrib
10.9.8.0/24
with your private network mask)# echo 'host all all 10.9.8.0/24 md5' | tee -a /etc/postgresql/*/main/pg_hba.conf
# systemctl enable --now postgresql
The content of this documentation is licensed under the
Creative
Commons Attribution-Share Alike 3.0 United States licence.
Code samples in this documentation are licensed under the
Apache License, Version 2.0.