diff options
author | xvonabur <webdev.xvonabur@gmail.com> | 2014-08-21 14:28:45 +0400 |
---|---|---|
committer | xvonabur <webdev.xvonabur@gmail.com> | 2014-08-21 14:28:45 +0400 |
commit | 672daff56c6bb5c6eeeb5d34a2f4ed83dc0ec201 (patch) | |
tree | abb852ecdc63f9fdb203fb47267ed295d2c59ff8 | |
parent | f2942ffee0f34e3b48e89d5047b9328e1693e370 (diff) | |
download | gitlab-ce-672daff56c6bb5c6eeeb5d34a2f4ed83dc0ec201.tar.gz |
Add dependency info for mysql-postgresql converter
Running converter with Python 2.6.x installed gives the following error:
AttributeError: 'module' object has no attribute 'check_output'
After installing Python 2.7.x everything works fine.
-rw-r--r-- | doc/update/mysql_to_postgresql.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/update/mysql_to_postgresql.md b/doc/update/mysql_to_postgresql.md index 91689890640..219a3bb635b 100644 --- a/doc/update/mysql_to_postgresql.md +++ b/doc/update/mysql_to_postgresql.md @@ -68,6 +68,7 @@ test -e /opt/gitlab/embedded/service/gitlab-rails/db/schema.rb.bundled || sudo / ``` ## Converting a GitLab backup file from MySQL to Postgres +**Note:** Please make sure to have Python 2.7.x (or higher) installed. GitLab backup files (<timestamp>_gitlab_backup.tar) contain a SQL dump. Using the lanyrd database converter we can replace a MySQL database dump inside the tar file with a Postgres database dump. This can be useful if you are moving to another server. |