X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/db31bedb109a4d918830a910654685a9f591cf28..eee302a3157296bccf40e9b83f52c2952294a04e:/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 d7bf4c2d2d..b25194a9ee 100644 --- a/doc/install/install-postgresql.html.textile.liquid +++ b/doc/install/install-postgresql.html.textile.liquid @@ -25,10 +25,8 @@ h3(#centos7). CentOS 7
# 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-postgresql95-postgresql
h3(#debian). Debian or Ubuntu @@ -38,7 +36,5 @@ Ubuntu 14.04 (Trusty) requires an updated PostgreSQL version, see "the PostgreSQ # 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