User Tools

Site Tools


project_management:redmine

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
project_management:redmine [2010/06/09 15:58] 172.26.14.218project_management:redmine [2010/09/02 18:27] aorth
Line 184: Line 184:
 <code># cd /opt/redmine-0.9.4 <code># cd /opt/redmine-0.9.4
 # patch -p1 < /home/aorth/src/lookup_LDAP_attributes_as_user.patch</code> # patch -p1 < /home/aorth/src/lookup_LDAP_attributes_as_user.patch</code>
 +
 +====== Updating Redmine from SVN ======
 +See the [[http://www.redmine.org/wiki/redmine/RedmineUpgrade#Option-2-Upgrading-from-a-SVN-checkout|the official instructions]] on upgrading via SVN.  Also done below on a real instance, 1.0.0 -> 1.0.1:
 +<code># cd /opt
 +# tar cjf redmine_before_1.0.1.tar.bz2 redmine/
 +# cd redmine
 +# svn update
 +# rake db:migrate RAILS_ENV=production
 +# rake db:migrate_plugins RAILS_ENV=production
 +# rake tmp:cache:clear
 +# rake tmp:sessions:clear
 +# apache2ctl graceful</code>