3 navsection: installguide
4 title: Install PostgreSQL 9.4+
7 Copyright (C) The Arvados Authors. All rights reserved.
9 SPDX-License-Identifier: CC-BY-SA-3.0
12 Arvados requires at least version *9.4* of PostgreSQL.
15 * "Debian or Ubuntu":#debian
17 h3(#centos7). CentOS 7
18 {% assign rh_version = "7" %}
19 {% include 'note_python_sc' %}
22 <notextile><pre># <span class="userinput">yum install rh-postgresql95 rh-postgresql95-postgresql-contrib</span>
23 ~$ <span class="userinput">scl enable rh-postgresql95 bash</span></pre></notextile>
24 # Initialize the database
25 <notextile><pre># <span class="userinput">postgresql-setup initdb</span></pre></notextile>
26 # Configure the database to accept password connections
27 <notextile><pre><code># <span class="userinput">sed -ri -e 's/^(host +all +all +(127\.0\.0\.1\/32|::1\/128) +)ident$/\1md5/' /var/lib/pgsql/data/pg_hba.conf</span></code></pre></notextile>
28 # Configure the database to launch at boot and start now
29 <notextile><pre># <span class="userinput">systemctl enable --now rh-postgresql95-postgresql</span></pre></notextile>
31 h3(#debian). Debian or Ubuntu
33 Debian 8 (Jessie) and Ubuntu 16.04 (Xenial) and later versions include a sufficiently recent version of Postgres.
35 Ubuntu 14.04 (Trusty) requires an updated PostgreSQL version, see "the PostgreSQL ubuntu repository":https://www.postgresql.org/download/linux/ubuntu/
38 <notextile><pre># <span class="userinput">apt-get --no-install-recommends install postgresql postgresql-contrib</span></pre></notextile>
39 # Configure the database to launch at boot and start now
40 <notextile><pre># <span class="userinput">systemctl enable --now postgresql</span></pre></notextile>