Skip to content
Snippets Groups Projects
Commit 4a78f46b authored by John McGehee's avatar John McGehee
Browse files

Rewrite section on creating links to non-packaged PostgreSQL.

parent f7b86340
No related branches found
No related tags found
No related merge requests found
# 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 DBMSs:
GitLab supports the following data base management systems:
- 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 going to use MySQL/MariaDB, make sure to read the [MySQL special notes]
If you are planning 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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment