Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
c7a5f0ad
Commit
c7a5f0ad
authored
Jul 21, 2020
by
Andreas Brandl
Committed by
Adam Hegyi
Jul 22, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mention btree_gist extension requirement
parent
95e20330
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
doc/administration/reference_architectures/3k_users.md
doc/administration/reference_architectures/3k_users.md
+2
-1
doc/install/installation.md
doc/install/installation.md
+1
-1
No files found.
doc/administration/reference_architectures/3k_users.md
View file @
c7a5f0ad
...
...
@@ -804,10 +804,11 @@ SSH into the **primary node**:
gitlab-psql
-d
gitlabhq_production
```
1.
Enable the
`pg_trgm`
extension
:
1.
Enable the
`pg_trgm`
and
`btree_gist`
extensions
:
```
shell
CREATE EXTENSION pg_trgm
;
CREATE EXTENSION btree_gist
;
```
1.
Exit the database prompt by typing
`\q`
and Enter.
...
...
doc/install/installation.md
View file @
c7a5f0ad
...
...
@@ -333,7 +333,7 @@ Starting from GitLab 12.1, only PostgreSQL is supported. Since GitLab 13.0, we r
sudo
-u
postgres psql
-d
template1
-c
"CREATE USER git CREATEDB;"
```
1.
Create the
`pg_trgm`
extension
(required for GitLab 8.6+)
:
1.
Create the
`pg_trgm`
extension:
```
shell
sudo
-u
postgres psql
-d
template1
-c
"CREATE EXTENSION IF NOT EXISTS pg_trgm;"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment