Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
omnibus-heptapod
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
This instance will be upgraded to Heptapod 17.9.0 final on 2025-04-04 between 14:00 and 15:00 UTC+2
Show more breadcrumbs
heptapod
omnibus-heptapod
Commits
4a78f46b
Commit
4a78f46b
authored
8 years ago
by
John McGehee
Browse files
Options
Downloads
Patches
Plain Diff
Rewrite section on creating links to non-packaged PostgreSQL.
parent
f7b86340
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/settings/database.md
+40
-32
40 additions, 32 deletions
doc/settings/database.md
with
40 additions
and
32 deletions
doc/settings/database.md
+
40
−
32
View file @
4a78f46b
# Database settings
_
**Note:**
Omnibus GitLab has a bundled PostgreSQL server and
it
is the preferred
DBMS to
be used with
GitLab._
Omnibus GitLab has a bundled PostgreSQL server and
PostgreSQ>
is the preferred
database for
GitLab._
---
...
...
@@ -6,8 +6,8 @@
---
GitLab supports the following
DBMS
s:
GitLab supports the following
data base management system
s:
-
PostgreSQL
-
MySQL
...
...
@@ -10,11 +10,10 @@
-
PostgreSQL
-
MySQL
All in all, you have three options of database servers to use with Omnibus
GitLab:
Thus you have three options for database servers to use with Omnibus GitLab:
-
Use the PostgreSQL bundled server (no configuration required)
-
Use an
[
external PostgreSQL server
](
#using-a-non-packaged-postgresql-database-management-server
)
-
Use an
[
external MySQL server
](
#using-a-mysql-database-management-server-enterprise-edition-only
)
...
...
@@ -16,10 +15,10 @@
-
Use the PostgreSQL bundled server (no configuration required)
-
Use an
[
external PostgreSQL server
](
#using-a-non-packaged-postgresql-database-management-server
)
-
Use an
[
external MySQL server
](
#using-a-mysql-database-management-server-enterprise-edition-only
)
If you are
go
ing to use MySQL/MariaDB, make sure to read the [MySQL special notes]
If you are
plann
ing to use MySQL/MariaDB, make sure to read the [MySQL special notes]
(#omnibus-mysql-special-notes) before proceeding.
## Using a non-packaged PostgreSQL database management server
...
...
@@ -22,8 +21,9 @@
(#omnibus-mysql-special-notes) before proceeding.
## Using a non-packaged PostgreSQL database management server
If you do not want to use the packaged PostgreSQL server, you can configure an
omnibus-gitlab package to use an external one.
By default, GitLab is configured to use the PostgreSQL server that is included
in Omnibus GitLab. You can also reconfigure it to use an external instance of
PostgreSQL.
**WARNING**
If you are using non-packaged PostgreSQL server, you need to make
...
...
@@ -28,7 +28,6 @@
**WARNING**
If you are using non-packaged PostgreSQL server, you need to make
sure that PostgreSQL is setup according to the requirements, see
[database requirements document] for more information.
sure that PostgreSQL is set up according to the [database requirements document].
1.
Edit
`/etc/gitlab/gitlab.rb`
:
...
...
@@ -53,5 +52,5 @@
`/etc/gitlab/gitlab.rb`
should have file permissions
`0600`
because it contains
plain-text passwords.
---
### Backup and restore a non-packaged PostgreSQL database
...
...
@@ -57,7 +56,7 @@
When using the
[
backup create and restore task
][
rake-backup
]
, GitLab will
attempt to use the
`pg_dump`
command to create a database backup file
and
`psql`
to restore a backup from the previously created file. In Omnibus GitLab, the
`PATH`
environment variable is set up in a way that puts Omnibus required paths
first. This means that backup will be using the packaged
`pg_dump`
and
`psql`
.
When using the
[
rake
backup create and restore task
][
rake-backup
]
, GitLab will
attempt to use the
packaged
`pg_dump`
command to create a database backup file
and the packaged
`psql`
command to restore a backup. This will only work if
they are the correct versions. Check the versions of the packaged
`pg_dump`
and
`psql`
:
...
...
@@ -63,5 +62,4 @@
To go around this issue and use the external
`pg_dump`
and
`psql`
commands, you
can symlink the executables to
`/opt/gitlab/bin/`
. The executable location
depends on the OS. As an example, for Debian:
/opt/gitlab/bin/pg_dump --version
/opt/gitlab/bin/psql -- version
...
...
@@ -67,3 +65,5 @@
1.
Find the location of
`psql`
and
`pg_dump`
:
If these versions are different from your non-packaged external PostgreSQL
(most likely they are different), move them aside and replace them with
symbolic links to your non-packaged PostgreSQL:
...
...
@@ -69,7 +69,8 @@
```bash
which pg_dump psql
```
1.
Check the location of the non-packaged executables:
bash
which pg_dump psql
This will output something like:
...
...
@@ -73,8 +74,9 @@
This will output something like:
```
/usr/bin/pg_dump
/usr/bin/psql
```
/usr/bin/pg_dump
/usr/bin/psql
1.
Move aside the existing executables and replace them with symbolic links to
the non-packaged versions:
...
...
@@ -80,3 +82,9 @@
1.
Symlink to
`/opt/gitlab/bin`
:
bash
cd /opt/gitlab/bin
mv psqi psql_moved
mv pg_dump pg_dump_moved
ln -s /usr/bin/pg_dump /usr/bin/psql .
1.
Re-check the versions:
...
...
@@ -82,6 +90,4 @@
```bash
ln -s /usr/bin/pg_dump /usr/bin/psql /opt/gitlab/bin/
```
---
/opt/gitlab/bin/pg_dump --version
/opt/gitlab/bin/psql -- version
...
...
@@ -87,4 +93,6 @@
They should now be the same as your non-packaged external PostgreSQL.
After this is done, ensure that the backup and restore tasks are using the
correct executables by running both the
[
backup
][
rake-backup
]
and
[
restore
][
rake-restore
]
tasks.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment