Transfer redmine database from the old version
Added by Timur V over 14 years ago
Hello!
I have database dump from Redmine 0.7. I want transfer it on Redmine 0.9.
How to properly transfer? What features are there?
Thanks!
Replies (5)
RE: Transfer redmine database from the old version - Added by Felix Schäfer over 14 years ago
Reload the dump in a database, point you redmine installation at it and proceed as with an update.
RE: Transfer redmine database from the old version - Added by Timur V over 14 years ago
Thanks ... I will try.
RE: Transfer redmine database from the old version - Added by Timur V over 14 years ago
That's what I did:
mysql -u root -p redmine < redmine180510.sql
After the download procedure dump, I got the following:
"Internal error
An error occurred on the page you were trying to access.
If you continue to experience problems please contact your redMine administrator for assistance."
Please, tell my what to do...
RE: Transfer redmine database from the old version - Added by Felix Schäfer over 14 years ago
Make a fresh reload of the your old dump and follow RedmineUpgrade, and if you don't have the config files left from the old installation (the database.yml for example), you will obviously need to create them accordingly. The important step in the upgrade is the database migration, as that is the step that takes your database from a "redmine 0.7" version to a "redmine 0.9.4" version.
RE: Transfer redmine database from the old version - Added by Timur V over 14 years ago
Thanks...
Received successful move))). The mistake was that I acted "RAILS_ENV = production rake db: migrate" before pouring the dump, but it was necessary to the contrary, first create a blank database and fill a dump, and then execute this command.