You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UPGRADING 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. == Redmine upgrade
  2. Redmine - project management software
  3. Copyright (C) 2006-2013 Jean-Philippe Lang
  4. http://www.redmine.org/
  5. == Upgrading
  6. 1. Uncompress the program archive in a new directory
  7. 2. Copy your database settings (RAILS_ROOT/config/database.yml)
  8. and your configuration file (RAILS_ROOT/config/configuration.yml)
  9. into the new config directory
  10. Note: before Redmine 1.2, SMTP configuration was stored in
  11. config/email.yml. It should now be stored in config/configuration.yml.
  12. 3. Copy the RAILS_ROOT/files directory content into your new installation
  13. This directory contains all the attached files.
  14. 4. Copy the folders of the installed plugins and themes into new installation
  15. Plugins must be stored in the [redmine_root]/plugins directory
  16. Themes must be stored in the [redmine_root]/public/themes directory
  17. WARNING: plugins from your previous Redmine version may not be compatible
  18. with the Redmine version you're upgrading to.
  19. 5. Install the required gems by running:
  20. bundle install --without development test
  21. If ImageMagick is not installed on your system, you should skip the installation
  22. of the rmagick gem using:
  23. bundle install --without development test rmagick
  24. 6. Generate a session store secret
  25. Redmine stores session data in cookies by default, which requires
  26. a secret to be generated. Under the new application directory run:
  27. rake generate_secret_token
  28. DO NOT REPLACE OR EDIT ANY OTHER FILES.
  29. 7. Migrate your database
  30. If you are upgrading to Rails 2.3.14 as part of this migration, you
  31. need to upgrade the plugin migrations before running the plugin migrations
  32. using:
  33. rake db:migrate:upgrade_plugin_migrations RAILS_ENV="production"
  34. Please make a backup before doing this! Under the new application
  35. directory run:
  36. rake db:migrate RAILS_ENV="production"
  37. If you have installed any plugins, you should also run their database
  38. migrations using:
  39. rake db:migrate_plugins RAILS_ENV="production"
  40. 8. Clear the cache and the existing sessions by running:
  41. rake tmp:cache:clear
  42. rake tmp:sessions:clear
  43. 9. Restart the application server (e.g. mongrel, thin, passenger)
  44. 10. Finally go to "Administration -> Roles & permissions" to check/set permissions
  45. for new features, if any
  46. == References
  47. * http://www.redmine.org/wiki/redmine/RedmineUpgrade