summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-05-07 14:57:26 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-05-07 14:57:26 +0300
commitdd3a55064edb595215c70a77d655e5578ddfcb20 (patch)
tree28618291ce5e70d6a16b87cee191f661dd09380e /doc
parente652a753c03e9989d1337d53999716034002fdc2 (diff)
parenta94b06e7b59af09d893966eee7af366bba29a6e4 (diff)
downloadgitlab-ce-dd3a55064edb595215c70a77d655e5578ddfcb20.tar.gz
Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce
Diffstat (limited to 'doc')
-rw-r--r--doc/install/installation.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md
index 28758197f33..a2aa9add9ad 100644
--- a/doc/install/installation.md
+++ b/doc/install/installation.md
@@ -121,6 +121,7 @@ Create a `git` user for Gitlab:
# 4. Database
We recommend using a PostgreSQL database. For MySQL check [MySQL setup guide](database_mysql.md).
+NOTE: because we need to make use of extensions you need at least pgsql 9.1.
# Install the database packages
sudo apt-get install -y postgresql-9.1 postgresql-client libpq-dev
@@ -129,7 +130,7 @@ We recommend using a PostgreSQL database. For MySQL check [MySQL setup guide](da
sudo -u postgres psql -d template1
# Create a user for GitLab.
- template1=# CREATE USER git;
+ template1=# CREATE USER git CREATEDB;
# Create the GitLab production database & grant all privileges on database
template1=# CREATE DATABASE gitlabhq_production OWNER git;