Refresh Gitolite install guide.
[arvados.git] / doc / _includes / _install_redhat_postgres_auth.liquid
1 {% include 'notebox_begin' %}
2
3 If you are installing on CentOS 6, you will need to modify PostgreSQL's configuration to allow password authentication for local users. The default configuration allows 'ident' authentication only. The following commands will make the configuration change, and restart PostgreSQL for it to take effect.
4
5 <notextile>
6 <pre><code>~$ <span class="userinput">sudo sed -ri -e 's/^(host +all +all +(127\.0\.0\.1\/32|::1\/128) +)ident$/\1md5/' {{pg_hba_path}}</span>
7 ~$ <span class="userinput">sudo service {{pg_service}} restart</span>
8 </code></pre>
9 </notextile>
10
11 {% include 'notebox_end' %}