Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/development/db_dump.md')
-rw-r--r--doc/development/db_dump.md59
1 files changed, 7 insertions, 52 deletions
diff --git a/doc/development/db_dump.md b/doc/development/db_dump.md
index f2076cbc410..c632302329a 100644
--- a/doc/development/db_dump.md
+++ b/doc/development/db_dump.md
@@ -1,56 +1,11 @@
---
-stage: Data Stores
-group: Database
-info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
+redirect_to: 'database/db_dump.md'
+remove_date: '2022-11-06'
---
-# Importing a database dump into a staging environment
+This document was moved to [another location](database/db_dump.md).
-Sometimes it is useful to import the database from a production environment
-into a staging environment for testing. The procedure below assumes you have
-SSH and `sudo` access to both the production environment and the staging VM.
-
-**Destroy your staging VM** when you are done with it. It is important to avoid
-data leaks.
-
-On the staging VM, add the following line to `/etc/gitlab/gitlab.rb` to speed up
-large database imports.
-
-```shell
-# On STAGING
-echo "postgresql['checkpoint_segments'] = 64" | sudo tee -a /etc/gitlab/gitlab.rb
-sudo touch /etc/gitlab/skip-auto-reconfigure
-sudo gitlab-ctl reconfigure
-sudo gitlab-ctl stop puma
-sudo gitlab-ctl stop sidekiq
-```
-
-Next, we let the production environment stream a compressed SQL dump to our
-local machine via SSH, and redirect this stream to a `psql` client on the staging
-VM.
-
-```shell
-# On LOCAL MACHINE
-ssh -C gitlab.example.com sudo -u gitlab-psql /opt/gitlab/embedded/bin/pg_dump -Cc gitlabhq_production |\
- ssh -C staging-vm sudo -u gitlab-psql /opt/gitlab/embedded/bin/psql -d template1
-```
-
-## Recreating directory structure
-
-If you need to re-create some directory structure on the staging server you can
-use this procedure.
-
-First, on the production server, create a list of directories you want to
-re-create.
-
-```shell
-# On PRODUCTION
-(umask 077; sudo find /var/opt/gitlab/git-data/repositories -maxdepth 1 -type d -print0 > directories.txt)
-```
-
-Copy `directories.txt` to the staging server and create the directories there.
-
-```shell
-# On STAGING
-sudo -u git xargs -0 mkdir -p < directories.txt
-```
+<!-- This redirect file can be deleted after <2022-11-06>. -->
+<!-- Redirects that point to other docs in the same project expire in three months. -->
+<!-- Redirects that point to docs in a different project or site (for example, link is not relative and starts with `https:`) expire in one year. -->
+<!-- Before deletion, see: https://docs.gitlab.com/ee/development/documentation/redirects.html -->