Commit 3bfbea37 authored by Jacob Vosmaer's avatar Jacob Vosmaer

Indicate when to stop/start GitLab

parent 92591b63
...@@ -11,11 +11,17 @@ second part of this documents explains the procedure to do this. ...@@ -11,11 +11,17 @@ second part of this documents explains the procedure to do this.
Use this if you are keeping GitLab on the same server. Use this if you are keeping GitLab on the same server.
``` ```
sudo service gitlab stop
# Update /home/git/gitlab/config/database.yml
git clone https://github.com/lanyrd/mysql-postgresql-converter.git git clone https://github.com/lanyrd/mysql-postgresql-converter.git
cd mysql-postgresql-converter cd mysql-postgresql-converter
mysqldump --compatible=postgresql --default-character-set=utf8 -r databasename.mysql -u root gitlabhq_production mysqldump --compatible=postgresql --default-character-set=utf8 -r databasename.mysql -u root gitlabhq_production
python db_converter.py databasename.mysql databasename.psql python db_converter.py databasename.mysql databasename.psql
psql -f databasename.psql -d gitlabhq_production psql -f databasename.psql -d gitlabhq_production
sudo service gitlab start
``` ```
## Converting a GitLab backup file from MySQL to Postgres ## Converting a GitLab backup file from MySQL to Postgres
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment