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 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. == Redmine upgrade
  2. Redmine - project management software
  3. Copyright (C) 2006- 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]/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. Only the gems that are needed by the adapters you've specified in your database
  25. configuration file are actually installed (eg. if your config/database.yml
  26. uses the 'mysql2' adapter, then only the mysql2 gem will be installed). Don't
  27. forget to re-run `bundle install` when you change config/database.yml for using
  28. other database adapters.
  29. If you need to load some gems that are not required by Redmine core (eg. fcgi),
  30. you can create a file named Gemfile.local at the root of your redmine directory.
  31. It will be loaded automatically when running `bundle install`.
  32. 6. Generate a session store secret
  33. If you're upgrading from Redmine 2.x or below, remove the following file
  34. if it exists: config/initializers/secret_token.rb
  35. Then generate a new secret by running the following command under the
  36. application directory:
  37. bundle exec rake generate_secret_token
  38. Alternatively, you can store this secret in config/secrets.yml:
  39. http://guides.rubyonrails.org/upgrading_ruby_on_rails.html#config-secrets-yml
  40. DO NOT REPLACE OR EDIT ANY OTHER FILES.
  41. 7. Migrate your database
  42. If you are upgrading to Rails 2.3.14 as part of this migration, you
  43. need to upgrade the plugin migrations before running the plugin migrations
  44. using:
  45. bundle exec rake db:migrate:upgrade_plugin_migrations RAILS_ENV="production"
  46. Please make a backup before doing this! Under the new application
  47. directory run:
  48. bundle exec rake db:migrate RAILS_ENV="production"
  49. If you have installed any plugins, you should also run their database
  50. migrations using:
  51. bundle exec rake db:migrate_plugins RAILS_ENV="production"
  52. 8. Clear the cache and the existing sessions by running:
  53. bundle exec rake tmp:cache:clear tmp:sessions:clear
  54. 9. Restart the application server (e.g. mongrel, thin, passenger)
  55. 10. Finally go to "Administration -> Roles & permissions" to check/set permissions
  56. for new features, if any
  57. == References
  58. * http://www.redmine.org/wiki/redmine/RedmineUpgrade