X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/db31bedb109a4d918830a910654685a9f591cf28..d71d4273d1f3d0b6381efafa649b81c6b4107cf1:/doc/install/install-postgresql.html.textile.liquid?ds=inline diff --git a/doc/install/install-postgresql.html.textile.liquid b/doc/install/install-postgresql.html.textile.liquid index d7bf4c2d2d..60afa1e24f 100644 --- a/doc/install/install-postgresql.html.textile.liquid +++ b/doc/install/install-postgresql.html.textile.liquid @@ -19,26 +19,20 @@ h3(#centos7). CentOS 7 {% include 'note_python_sc' %} # Install PostgreSQL -
# yum install rh-postgresql95 rh-postgresql95-postgresql-contrib
-~$ scl enable rh-postgresql95 bash
+
# yum install rh-postgresql12 rh-postgresql12-postgresql-contrib
+~$ scl enable rh-postgresql12 bash
# Initialize the database
# postgresql-setup initdb
# Configure the database to accept password connections
# 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 launch at boot -
# systemctl enable rh-postgresql95-postgresql
-# Start the database -
# systemctl start rh-postgresql95-postgresql
+# Configure the database to launch at boot and start now +
# systemctl enable --now rh-postgresql12-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/ +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
-# Configure the database to launch at boot -
# systemctl enable postgresql
-# Start PostgreSQL -
# systemctl start postgresql
+# Configure the database to launch at boot and start now +
# systemctl enable --now postgresql