For GitLab 12.1 and earlier, use `gitlab-rake gitlab:backup:create`.
If you are using the [GitLab Helm chart](https://gitlab.com/gitlab-org/charts/gitlab) on a
```shell
Kubernetes cluster, you can run the backup task using `backup-utility` script on
gitlab-rake gitlab:backup:create
the GitLab task runner pod via `kubectl`. Refer to [backing up a GitLab installation](https://gitlab.com/gitlab-org/charts/gitlab/blob/master/doc/backup-restore/backup.md#backing-up-a-gitlab-installation) for more details:
```
If you're using the [GitLab Helm chart](https://gitlab.com/gitlab-org/charts/gitlab)
on a Kubernetes cluster, you can run the backup task by using `kubectl` to run the `backup-utility`
script on the GitLab task runner pod. For more details, see
[backing up a GitLab installation](https://gitlab.com/gitlab-org/charts/gitlab/blob/master/doc/backup-restore/backup.md#backing-up-a-gitlab-installation).
Similarly to the Kubernetes case, if you have scaled out your GitLab
Similar to the Kubernetes case, if you have scaled out your GitLab cluster to
cluster to use multiple application servers, you should pick a
use multiple application servers, you should pick a designated node (that won't
designated node (that won't be auto-scaled away) for running the
be auto-scaled away) for running the backup Rake task. Because the backup Rake
backup Rake task. Because the backup Rake task is tightly coupled to
task is tightly coupled to the main Rails application, this is typically a node
the main Rails application, this is typically a node on which you're
on which you're also running Unicorn/Puma or Sidekiq.
also running Unicorn/Puma and/or Sidekiq.
Example output:
Example output:
...
@@ -136,11 +141,11 @@ Deleting old backups... [SKIPPING]
...
@@ -136,11 +141,11 @@ Deleting old backups... [SKIPPING]
### Storing configuration files
### Storing configuration files
The [backup Rake task](#back-up-gitlab) GitLab provides
The [backup Rake task](#back-up-gitlab) GitLab provides does _not_ store your
does **not** store your configuration files. The primary reason for this is that your
configuration files. The primary reason for this is that your database contains
database contains encrypted information for two-factor authentication, the CI/CD
items including encrypted information for two-factor authentication and the
'secure variables', and so on. Storing encrypted information along with its key in the
CI/CD _secure variables_. Storing encrypted information in the same location
same place defeats the purpose of using encryption in the first place.
as its key defeats the purpose of using encryption in the first place.
CAUTION: **Warning:**
CAUTION: **Warning:**
The secrets file is essential to preserve your database encryption key.
The secrets file is essential to preserve your database encryption key.
...
@@ -158,30 +163,31 @@ For installation from source:
...
@@ -158,30 +163,31 @@ For installation from source:
-`/home/git/gitlab/config/gitlab.yml`
-`/home/git/gitlab/config/gitlab.yml`
For [Docker installations](https://docs.gitlab.com/omnibus/docker/), you must
For [Docker installations](https://docs.gitlab.com/omnibus/docker/), you must
back up the volume where the configuration files are stored. If you have created
back up the volume where the configuration files are stored. If you created
the GitLab container according to the documentation, it should be under
the GitLab container according to the documentation, it should be in the
`/srv/gitlab/config`.
`/srv/gitlab/config` directory.
For [GitLab Helm chart Installations](https://gitlab.com/gitlab-org/charts/gitlab) on a
For [GitLab Helm chart installations](https://gitlab.com/gitlab-org/charts/gitlab)
Kubernetes cluster, you must follow the [Backup the secrets](https://docs.gitlab.com/charts/backup-restore/backup.html#backup-the-secrets) instructions.
on a Kubernetes cluster, you must follow the
[Backup the secrets](https://docs.gitlab.com/charts/backup-restore/backup.html#backup-the-secrets)
instructions.
You may also want to back up any TLS keys and certificates, and your
You may also want to back up any TLS keys and certificates, and your
The command line tool GitLab provides to backup your instance can take more options.
The command line tool GitLab provides to backup your instance can accept more
options.
#### Backup strategy option
#### Backup strategy option
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/8728) in GitLab 8.17.
The default backup strategy is to essentially stream data from the respective
The default backup strategy is to essentially stream data from the respective
data locations to the backup using the Linux command `tar` and `gzip`. This works
data locations to the backup using the Linux command `tar` and `gzip`. This works
fine in most cases, but can cause problems when data is rapidly changing.
fine in most cases, but can cause problems when data is rapidly changing.
...
@@ -203,8 +209,7 @@ To use the `copy` strategy instead of the default streaming strategy, specify
...
@@ -203,8 +209,7 @@ To use the `copy` strategy instead of the default streaming strategy, specify
sudo gitlab-backup create STRATEGY=copy
sudo gitlab-backup create STRATEGY=copy
```
```
NOTE: **Note:**
Users of GitLab 12.1 and earlier should use the command `gitlab-rake gitlab:backup:create` instead.
For GitLab 12.1 and earlier, use `gitlab-rake gitlab:backup:create`.
#### Backup filename
#### Backup filename
...
@@ -212,34 +217,41 @@ CAUTION: **Warning:**
...
@@ -212,34 +217,41 @@ CAUTION: **Warning:**
If you use a custom backup filename, you will not be able to
If you use a custom backup filename, you will not be able to
[limit the lifetime of the backups](#limit-backup-lifetime-for-local-files-prune-old-backups).
[limit the lifetime of the backups](#limit-backup-lifetime-for-local-files-prune-old-backups).
By default a backup file is created according to the specification in [the Backup timestamp](#backup-timestamp) section above. You can however override the `[TIMESTAMP]` part of the filename by setting the `BACKUP` environment variable. For example:
By default, a backup file is created according to the specification in the
previous [Backup timestamp](#backup-timestamp) section. You can, however,
override the `[TIMESTAMP]` portion of the filename by setting the `BACKUP`
environment variable. For example:
```shell
```shell
sudo gitlab-backup create BACKUP=dump
sudo gitlab-backup create BACKUP=dump
```
```
NOTE: **Note:**
Users of GitLab 12.1 and earlier should use the command `gitlab-rake gitlab:backup:create` instead.
For GitLab 12.1 and earlier, use `gitlab-rake gitlab:backup:create`.
The resulting file will then be `dump_gitlab_backup.tar`. This is useful for systems that make use of rsync and incremental backups, and will result in considerably faster transfer speeds.
The resulting file will then be `dump_gitlab_backup.tar`. This is useful for
systems that make use of rsync and incremental backups, and will result in
considerably faster transfer speeds.
#### Rsyncable
#### Rsyncable
To make sure the generated archive is intelligently transferable by rsync, the `GZIP_RSYNCABLE=yes` option can be set. This will set the `--rsyncable` option to `gzip`. This is only useful in combination with setting [the Backup filename option](#backup-filename).
To ensure the generated archive is transferable by rsync, you can set the `GZIP_RSYNCABLE=yes`
option. This sets the `--rsyncable` option to `gzip`, which is useful only in
combination with setting [the Backup filename option](#backup-filename).
Note that the `--rsyncable` option in `gzip` is not guaranteed to be available on all distributions. To verify that it is available in your distribution you can run `gzip --help` or consult the man pages.
Note that the `--rsyncable` option in `gzip` isn't guaranteed to be available
on all distributions. To verify that it's available in your distribution, run
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/37158) in GitLab 13.3.
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/37158) in GitLab 13.3.
Repositories can be backed up concurrently to help fully utilise CPU time. The following variables
Repositories can be backed up concurrently to help fully utilize CPU time. The
are available to modify the default behavior of the Rake task:
following variables are available to modify the default behavior of the Rake
task:
-`GITLAB_BACKUP_MAX_CONCURRENCY` sets the maximum number of projects to backup at the same time.
-`GITLAB_BACKUP_MAX_CONCURRENCY`: The maximum number of projects to back up at
Defaults to 1.
the same time. Defaults to `1`.
-`GITLAB_BACKUP_MAX_STORAGE_CONCURRENCY` sets the maximum number of projects to backup at the same time on each storage. This allows the repository backups to be spread across storages.
-`GITLAB_BACKUP_MAX_STORAGE_CONCURRENCY`: The maximum number of projects to
Defaults to 1.
back up at the same time on each storage. This allows the repository backups
Users of GitLab 12.1 and earlier should use the command `gitlab-rake gitlab:backup:create` instead.
For GitLab 12.1 and earlier, use `gitlab-rake gitlab:backup:create`.
#### Uploading to locally mounted shares
#### Uploading to locally mounted shares
You may also send backups to a mounted share (for example, `NFS`,`CIFS`, or`SMB`) by
You may also send backups to a mounted share (for example, `NFS`,`CIFS`, or
using the Fog [`Local`](https://github.com/fog/fog-local#usage) storage provider.
`SMB`) by using the Fog [`Local`](https://github.com/fog/fog-local#usage)
The directory pointed to by the `local_root` key **must** be owned by the `git`
storage provider. The directory pointed to by the `local_root` key _must_ be
user **when mounted** (mounting with the `uid=` of the `git` user for `CIFS` and
owned by the `git` user _when mounted_ (mounting with the `uid=` of the `git`
`SMB`) or the user that you are executing the backup tasks under (for Omnibus
user for `CIFS` and `SMB`) or the user that you are executing the backup tasks
packages, this is the `git` user).
as (for Omnibus packages, this is the `git` user).
The `backup_upload_remote_directory`**must** be set in addition to the
The `backup_upload_remote_directory`_must_ be set in addition to the
`local_root` key. This is the sub directory inside the mounted directory that
`local_root` key. This is the sub directory inside the mounted directory that
backups will be copied to, and will be created if it does not exist. If the
backups will be copied to, and will be created if it does not exist. If the
directory that you want to copy the tarballs to is the root of your mounted
directory that you want to copy the tarballs to is the root of your mounted
directory, just use `.` instead.
directory, use `.` instead.
NOTE: **Note:**
Because file system performance may affect GitLab's overall performance,
Since file system performance may affect GitLab's overall performance, we do not recommend using EFS for storage. See the [relevant documentation](../administration/nfs.md#avoid-using-awss-elastic-file-system-efs) for more details.
[GitLab doesn't recommend using EFS for storage](../administration/nfs.md#avoid-using-awss-elastic-file-system-efs).
GitLab provides a simple command line interface to restore your whole installation,
GitLab provides a command line interface to restore your entire installation,
and is flexible enough to fit your needs.
and is flexible enough to fit your needs.
The [restore prerequisites section](#restore-prerequisites) includes crucial
The [restore prerequisites section](#restore-prerequisites) includes crucial
information. Make sure to read and test the whole restore process at least once
information. Be sure to read and test the complete restore process at least
before attempting to perform it in a production environment.
once before attempting to perform it in a production environment.
You can only restore a backup to **exactly the same version and type (CE/EE)** of
You can restore a backup only to _the exact same version and type (CE/EE)_ of
GitLab that you created it on, for example CE 9.1.0.
GitLab that you created it on (for example CE 9.1.0).
If your backup is a different version than the current installation, you will
If your backup is a different version than the current installation, you'll
need to [downgrade your GitLab installation](https://docs.gitlab.com/omnibus/update/README.html#downgrade)
need to [downgrade your GitLab installation](https://docs.gitlab.com/omnibus/update/README.html#downgrade)
before restoring the backup.
before restoring the backup.
### Restore prerequisites
### Restore prerequisites
You need to have a working GitLab installation before you can perform
You need to have a working GitLab installation before you can perform a
a restore. This is mainly because the system user performing the
restore. This is because the system user performing the restore actions (`git`)
restore actions (`git`) is usually not allowed to create or delete
is usually not allowed to create or delete the SQL database needed to import
the SQL database it needs to import data into (`gitlabhq_production`).
data into (`gitlabhq_production`). All existing data will be either erased
All existing data will be either erased (SQL) or moved to a separate
(SQL) or moved to a separate directory (such as repositories and uploads).
directory (repositories, uploads).
To restore a backup, you will also need to restore `/etc/gitlab/gitlab-secrets.json`
To restore a backup, you'll also need to restore `/etc/gitlab/gitlab-secrets.json`
(for Omnibus packages) or `/home/git/gitlab/.secret` (for installations
(for Omnibus packages) or `/home/git/gitlab/.secret` (for installations from
from source). This file contains the database encryption key,
source). This file contains the database encryption key,
[CI/CD variables](../ci/variables/README.md#gitlab-cicd-environment-variables), and
[CI/CD variables](../ci/variables/README.md#gitlab-cicd-environment-variables), and
variables used for [two-factor authentication](../user/profile/account/two_factor_authentication.md).
variables used for [two-factor authentication](../user/profile/account/two_factor_authentication.md).
If you fail to restore this encryption key file along with the application data
If you fail to restore this encryption key file along with the application data
backup, users with two-factor authentication enabled and GitLab Runner will
backup, users with two-factor authentication enabled and GitLab Runner will
lose access to your GitLab server.
lose access to your GitLab server.
You may also want to restore any TLS keys, certificates, or [SSH host keys](https://superuser.com/questions/532040/copy-ssh-keys-from-one-server-to-another-server/532079#532079).
You may also want to restore any TLS keys, certificates, or
Starting with GitLab 12.9 if an untarred backup (like the ones made with
Starting with GitLab 12.9, if an untarred backup (like the ones made with
`SKIP=tar`) is found, and no backup is chosen with `BACKUP=<timestamp>`, the
`SKIP=tar`) is found, and no backup is chosen with `BACKUP=<timestamp>`, the
untarred backup is used.
untarred backup is used.
Depending on your case, you might want to run the restore command with one or
Depending on your case, you might want to run the restore command with one or
more of the following options:
more of the following options:
-`BACKUP=timestamp_of_backup` - Required if more than one backup exists.
-`BACKUP=timestamp_of_backup`: Required if more than one backup exists.
Read what the [backup timestamp is about](#backup-timestamp).
Read what the [backup timestamp is about](#backup-timestamp).
-`force=yes` - Does not ask if the authorized_keys file should get regenerated and assumes 'yes' for warning that database tables will be removed, enabling the "Write to authorized_keys file" setting, and updating LDAP providers.
-`force=yes`: Doesn't ask if the authorized_keys file should get regenerated,
and assumes 'yes' for warning that database tables will be removed,
enabling the "Write to authorized_keys file" setting, and updating LDAP
providers.
If you are restoring into directories that are mount points, you will need to make
If you're restoring into directories that are mount points, you must ensure these directories are
sure these directories are empty before attempting a restore. Otherwise GitLab
empty before attempting a restore. Otherwise, GitLab attempts to move these directories before
will attempt to move these directories before restoring the new data and this
restoring the new data, which causes an error.
would cause an error.
Read more on[configuring NFS mounts](../administration/nfs.md)
Read more about[configuring NFS mounts](../administration/nfs.md)
### Restore for installation from source
### Restore for installation from source
...
@@ -845,7 +869,7 @@ Restoring repositories:
...
@@ -845,7 +869,7 @@ Restoring repositories:
Deleting tmp directories...[DONE]
Deleting tmp directories...[DONE]
```
```
Next, restore `/home/git/gitlab/.secret` if necessary as mentioned above.
Next, restore `/home/git/gitlab/.secret` if necessary, as previously mentioned.
Restart GitLab:
Restart GitLab:
...
@@ -862,7 +886,7 @@ This procedure assumes that:
...
@@ -862,7 +886,7 @@ This procedure assumes that:
- You have run `sudo gitlab-ctl reconfigure` at least once.
- You have run `sudo gitlab-ctl reconfigure` at least once.
- GitLab is running. If not, start it using `sudo gitlab-ctl start`.
- GitLab is running. If not, start it using `sudo gitlab-ctl start`.
First make sure your backup tar file is in the backup directory described in the
First ensure your backup tar file is in the backup directory described in the
`gitlab.rb` configuration `gitlab_rails['backup_path']`. The default is
`gitlab.rb` configuration `gitlab_rails['backup_path']`. The default is
`/var/opt/gitlab/backups`. It needs to be owned by the `git` user.
`/var/opt/gitlab/backups`. It needs to be owned by the `git` user.
> Now we can have a longer running rsync job which will create a consistent replica on the remote server.
> Now we can have a longer running rsync job which will create a consistent replica on the remote server.
> The replica includes all repositories, uploads and PostgreSQL data.
> The replica includes all repositories, uploads and PostgreSQL data.
If you are running GitLab on a virtualized server you can possibly also create VM snapshots of the entire GitLab server.
If you're running GitLab on a virtualized server, you can possibly also create
It is not uncommon however for a VM snapshot to require you to power down the server, so this approach is probably of limited practical use.
VM snapshots of the entire GitLab server. It's not uncommon however for a VM
snapshot to require you to power down the server, which limits this solution's
practical use.
## Additional notes
## Additional notes
This documentation is for GitLab Community and Enterprise Edition. We backup
This documentation is for GitLab Community and Enterprise Edition. We backup
GitLab.com and make sure your data is secure, but you can't use these methods
GitLab.com and ensure your data is secure. You can't, however, use these
to export / backup your data yourself from GitLab.com.
methods to export or back up your data yourself from GitLab.com.
Issues are stored in the database. They can't be stored in Git itself.
Issues are stored in the database, and can't be stored in Git itself.
To migrate your repositories from one server to another with an up-to-date version of
To migrate your repositories from one server to another with an up-to-date
GitLab, you can use the [import Rake task](import.md) to do a mass import of the
version of GitLab, use the [import Rake task](import.md) to do a mass import of
repository. Note that if you do an import Rake task, rather than a backup restore, you
the repository. If you do an import Rake task rather than a backup restore,
will have all your repositories, but not any other data.
you get all of your repositories, but no other data.
## Troubleshooting
## Troubleshooting
The following are possible problems you might encounter with possible solutions.
The following are possible problems you might encounter, along with potential
solutions.
### Restoring database backup using Omnibus packages outputs warnings
### Restoring database backup using Omnibus packages outputs warnings
If you are using backup restore procedures you might encounter the following warnings:
If you're using backup restore procedures, you may encounter the following
warning messages:
```plaintext
```plaintext
psql:/var/opt/gitlab/backups/db/database.sql:22: ERROR: must be owner of extension plpgsql
psql:/var/opt/gitlab/backups/db/database.sql:22: ERROR: must be owner of extension plpgsql
...
@@ -1036,22 +1067,31 @@ psql:/var/opt/gitlab/backups/db/database.sql:2931: WARNING: no privileges could
...
@@ -1036,22 +1067,31 @@ psql:/var/opt/gitlab/backups/db/database.sql:2931: WARNING: no privileges could
psql:/var/opt/gitlab/backups/db/database.sql:2933: WARNING: no privileges were granted for "public" (two occurrences)
psql:/var/opt/gitlab/backups/db/database.sql:2933: WARNING: no privileges were granted for "public" (two occurrences)
```
```
Be advised that, backup is successfully restored in spite of these warnings.
Be advised that the backup is successfully restored in spite of these warning
messages.
The Rake task runs this as the `gitlab` user which does not have the superuser access to the database. When restore is initiated it will also run as `gitlab` user but it will also try to alter the objects it does not have access to.
The Rake task runs this as the `gitlab` user, which doesn't have superuser
Those objects have no influence on the database backup/restore but they give this annoying warning.
access to the database. When restore is initiated, it also runs as the `gitlab`
user, but it also tries to alter the objects it doesn't have access to.
Those objects have no influence on the database backup or restore, but display
a warning message.
For more information see these PostgreSQL issue tracker questions about [not being a superuser](https://www.postgresql.org/message-id/201110220712.30886.adrian.klaver@gmail.com), [having different owners](https://www.postgresql.org/message-id/2039.1177339749@sss.pgh.pa.us), and on stack overflow, about [resulting errors](https://stackoverflow.com/questions/4368789/error-must-be-owner-of-language-plpgsql).
For more information, see:
- PostgreSQL issue tracker:
-[Not being a superuser](https://www.postgresql.org/message-id/201110220712.30886.adrian.klaver@gmail.com).
-[Having different owners](https://www.postgresql.org/message-id/2039.1177339749@sss.pgh.pa.us).
This is caused by the restore being run as the unprivileged user `git` which was
This issue is caused by the restore running as the unprivileged user `git`,
unable to assign the correct ownership to the registry files during the restore
which is unable to assign the correct ownership to the registry files during
([issue 62759](https://gitlab.com/gitlab-org/gitlab-foss/-/issues/62759"Incorrect permissions on registry filesystem after restore")).
the restore process ([issue 62759](https://gitlab.com/gitlab-org/gitlab-foss/-/issues/62759"Incorrect permissions on registry filesystem after restore")).
To get your registry working again:
To get your registry working again:
...
@@ -1240,14 +1280,12 @@ To get your registry working again:
...
@@ -1240,14 +1280,12 @@ To get your registry working again:
1. Confirm there is sufficient disk space for the Gzip operation.
- Confirm there is sufficient disk space for the Gzip operation.
1. If NFS is being used, check if the mount option `timeout` is set. The default is `600`, and changing this to smaller values have resulted in this error.
- If NFS is being used, check if the mount option `timeout` is set. The
default is `600`, and changing this to smaller values results in this error.