PostgreSQL Centos 7
Installation friendly for a JIRA or Bamboo installation afterwards. Install sudo yum install postgresql-server postgresql-contrib Init sudo postgresql-setup initdb Password authentication By default, PostgreSQL does not allow password authentication. sudo vi /var/lib/pgsql/data/pg_hba.conf Find the lines that looks like this, near the bottom of the file: pg_hba.conf excerpt (original) host all all 127.0.0.1/32 ident host all all ::1/128 ident Then replace “ident” with “md5”, so they look like this: ...