diff options
author | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2013-10-02 08:05:52 +0200 |
---|---|---|
committer | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2013-10-02 08:07:36 +0200 |
commit | a3731cf3623f181e25113ebbb2415d7dddb630b2 (patch) | |
tree | 75bf6190c88a0e5f7ff143a7eeb16471fc2e90c1 /doc/install/databases.md | |
parent | 485162ec608784dc1cbafe70b3ba3201b0f74098 (diff) | |
download | gitlab-ce-a3731cf3623f181e25113ebbb2415d7dddb630b2.tar.gz |
Use peer-based authentication for PostgreSQL
Diffstat (limited to 'doc/install/databases.md')
-rw-r--r-- | doc/install/databases.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/install/databases.md b/doc/install/databases.md index 6477e1c967c..be7bc0aad2e 100644 --- a/doc/install/databases.md +++ b/doc/install/databases.md @@ -58,7 +58,7 @@ GitLab supports the following databases: sudo -u postgres psql -d template1 # Create a user for GitLab. (change $password to a real password) - template1=# CREATE USER git WITH PASSWORD '$password'; + template1=# CREATE USER git; # Create the GitLab production database & grant all privileges on database template1=# CREATE DATABASE gitlabhq_production OWNER git; |