VM - Redmine OS is Debian 8 in 64-bit edition. SSH/SCP is running. Redmine is running in /srv/edmine/public_html. Restarting Redmine is just via "systemctl restart unicorn" as root (or sudo) Linux users: root/r0otPwd* easy/e4syPwd- Mysql users: root/j3r4b1nA redmine/QhAKtwCLGW Redmine users: manager/manager2013 worker/worker2013 ---------------- How to import older Redmine (SOURCE) into VM (TARGET) 1) from your (SOURCE) create MySQL dump file: mysqldump --opt -uUSER -pPASSWORD DATABASE_NAME > backup.sql 2) trsnafer backup.sql into (TARGET) 3) recreate (TARGET) database, connect to MySQL server mysql -uedmine -pQhAKtwCLGW DROP DATABASE redmine; CREATE DATABASE redmine; quit 4) import backup.sql mysql -u"redmine" -p"QhAKtwCLGW" redmine < backup.sql 5) transfer attachments and other files from (SOURCE)[redmine]/files into (TARGET)/srv/redmine/public_html/files 6) go to Redmine folder on (TARGET) cd /srv/redmine/public_html/ 7) run: bundle update 8) run: bundle exec rake db:migrate RAILS_ENV=production 9) restart unicorn