--- layout: default navsection: installguide title: Install PostgreSQL 9.4+ ... {% comment %} 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. * "CentOS 7":#centos7 * "Debian or Ubuntu":#debian h3(#centos7). CentOS 7 {% assign rh_version = "7" %} {% include 'note_python_sc' %} # Install PostgreSQL:
~$ sudo yum install rh-postgresql95 rh-postgresql95-postgresql-contrib
~$ scl enable rh-postgresql95 bash
# Initialize the database:
~$ sudo postgresql-setup initdb
# Configure the database to accept password connections:
~$ sudo 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:
~$ sudo systemctl enable rh-postgresql95-postgresql
# Start the database:
~$ sudo systemctl start rh-postgresql95-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/ # Install PostgreSQL:
~$ sudo apt-get install postgresql postgresql-contrib
h2(#sso). Set up SSO server credentials and database {% assign service_role = "arvados_sso" %} {% assign service_database = "arvados_sso_production" %} {% assign use_contrib = false %} {% include 'install_postgres_database' %}