Project

General

Profile

RedmineUpgrade » History » Version 8

Jean-Philippe Lang, 2009-01-01 13:01

1 1 Jean-Philippe Lang
h1. Upgrading
2
3 2 Jean-Philippe Lang
h2. Upgrading from a SVN checkout
4
5
1. Go to the Redmine root directory and run the following command:
6
7
  svn update
8
9
2. Migrate your database (please, make a database backup before doing this):
10
11
  rake db:migrate RAILS_ENV="production"
12
13
3. Clear the cache and existing sessions:
14
15
<pre>
16
rake tmp:cache:clear
17
rake tmp:sessions:clear
18
</pre>
19
20 6 Thomas Lecavelier
4. Restart the application and go to _"Admin -> Roles & permissions"_ to check/set permissions for the new features, if any.
21 2 Jean-Philippe Lang
22
h2. Upgrading from a downloaded release
23
24
1. Uncompress the new program archive in a new directory.
25 1 Jean-Philippe Lang
   
26 3 Jean-Philippe Lang
2. Copy your database settings @config/database.yml@ into the new @config@ directory.
27
28 8 Jean-Philippe Lang
3. Copy config/email.yml.example to config/email.yml and edit this file to adjust your SMTP settings.
29 3 Jean-Philippe Lang
30 7 Jean-Philippe Lang
4. Go to your new redmine directory, then migrate your database (please, make a database backup before doing this):
31 1 Jean-Philippe Lang
32
  rake db:migrate RAILS_ENV="production"
33
34 2 Jean-Philippe Lang
5. Copy the @RAILS_ROOT/files@ directory content into your new installation.
35 1 Jean-Philippe Lang
36 6 Thomas Lecavelier
6. Start the application and go to _"Admin -> Roles & permissions"_ to check/set permissions for the new features, if any.