X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/926f71e8481d62a20ff66a834d876713df5fd0c7..8ca57d340d0322282d95545983397952112abce3:/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 a9614b9be5..56ad95635c 100644 --- a/doc/install/install-postgresql.html.textile.liquid +++ b/doc/install/install-postgresql.html.textile.liquid @@ -13,6 +13,7 @@ Arvados requires at least version *9.4* of PostgreSQL. We recommend using versio * "AWS":#aws * "CentOS 7":#centos7 +* "Alma/CentOS/Red Hat/Rocky 8":#rh8 * "Debian or Ubuntu":#debian h3(#aws). AWS @@ -28,16 +29,37 @@ h3(#centos7). CentOS 7 ~$ scl enable rh-postgresql12 bash # 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
+h3(#rh8). Alma/CentOS/Red Hat/Rocky 8 + +{% comment %} +The default version on RH8 is PostgreSQL 10. You can install up to PostgreSQL 13. +{% endcomment %} + +# Install PostgreSQL +
# dnf install postgresql-server postgresql-contrib
+# Initialize the database +
# postgresql-setup initdb
+# 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 postgresql
+ h3(#debian). Debian or Ubuntu Debian 10 (Buster) and Ubuntu 16.04 (Xenial) and later versions include a sufficiently recent version of Postgres. # Install PostgreSQL -
# apt-get --no-install-recommends install postgresql postgresql-contrib
+
# apt-get --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