X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/fe3a451ad1d3613fd0953919fc44e5df18219fc4..6fec60abcddaca24e2226e2fbc9d806cee9591f9:/doc/install/install-postgresql.html.textile.liquid diff --git a/doc/install/install-postgresql.html.textile.liquid b/doc/install/install-postgresql.html.textile.liquid index 7c094257ce..ef952dd67f 100644 --- a/doc/install/install-postgresql.html.textile.liquid +++ b/doc/install/install-postgresql.html.textile.liquid @@ -9,32 +9,40 @@ Copyright (C) The Arvados Authors. All rights reserved. SPDX-License-Identifier: CC-BY-SA-3.0 {% endcomment %} -Arvados requires at least version *9.4* of PostgreSQL. +Arvados requires at least version *9.4* of PostgreSQL. We recommend using version 10 or newer. -* "CentOS 7":#centos7 +* "AWS":#aws +* "Red Hat, AlmaLinux, and Rocky Linux":#rh8 * "Debian or Ubuntu":#debian -h3(#centos7). CentOS 7 -{% assign rh_version = "7" %} -{% include 'note_python_sc' %} +h3(#aws). AWS + +When deploying on AWS, Arvados can use an Aurora RDS PostgreSQL database. Aurora Serverless is not recommended. + +h3(#rh8). Red Hat, AlmaLinux, and Rocky Linux + +{% comment %} +The default version on RH8 is PostgreSQL 10. You can install up to PostgreSQL 13. +{% endcomment %} # Install PostgreSQL -
# yum install rh-postgresql12 rh-postgresql12-postgresql-contrib
-~$ scl enable rh-postgresql12 bash
+
# dnf install postgresql-server postgresql-contrib
# Initialize the database
# postgresql-setup initdb
-# Configure the database to accept password connections +# Configure the database to accept password connections from localhost
# sed -ri -e 's/^(host +all +all +(127\.0\.0\.1\/32|::1\/128) +)ident$/\1md5/' /var/lib/pgsql/data/pg_hba.conf
+# Configure the database to accept password connections from the local network (replace @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
# Configure the database to launch at boot and start now -
# systemctl enable --now rh-postgresql12-postgresql
+
# systemctl enable --now postgresql
h3(#debian). Debian or Ubuntu -Debian 8 (Jessie) and Ubuntu 16.04 (Xenial) and later versions include a sufficiently recent version of Postgres. - -Ubuntu 14.04 (Trusty) requires an updated PostgreSQL version, see "the PostgreSQL ubuntu repository":https://www.postgresql.org/download/linux/ubuntu/ +All supported versions of Debian and Ubuntu include a version of PostgreSQL you can use with Arvados. # Install PostgreSQL -
# apt-get --no-install-recommends install postgresql postgresql-contrib
+
# apt --no-install-recommends install postgresql postgresql-contrib
+# Configure PostgreSQL to accept password connections from the local network (replace @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
# Configure the database to launch at boot and start now -
# systemctl enable --now postgresql
+
# systemctl enable --now postgresql