Changes between Version 7 and Version 8 of TracUpgradeEden


Ignore:
Timestamp:
12/19/11 21:41:29 (13 years ago)
Author:
Fran Boon
Comment:

Upgrade -> 0.12.2

Legend:

Unmodified
Added
Removed
Modified
  • TracUpgradeEden

    v7 v8  
    11= Trac Upgrade =
     2
     30.12.1 -> 0.12.2
     4
     5Do a Backup:
     6{{{
     7trac-admin /home/sahana/trac hotcopy /root/trac_backup
     8NOW=$(date +"%Y-%m-%d")
     9tar cvf trac-$NOW.tar /root/trac_backup
     10bzip2 -9 trac-$NOW.tar
     11rm -rf /root/trac_backup
     12}}}
     13
     14Shut down Apache:
     15{{{
     16apache2ctl stop
     17}}}
     18
     19Update Trac:
     20{{{
     21easy_install --upgrade Trac==0.12.2
     22}}}
     23
     24Update Plugins:
     25{{{
     26cd /root/trac-install
     27cd accountmanagerplugin
     28svn up
     29python setup.py install
     30cd ..
     31cd externallinksnewwindowplugin
     32svn up
     33python setup.py install
     34cd ..
     35cd mathcaptchaplugin
     36svn up
     37python setup.py install
     38cd ..
     39cd recaptcharegisterplugin
     40svn up
     41python setup.py install
     42cd ..
     43cd screenshotsplugin
     44svn up
     45python setup.py install
     46cd ..
     47cd sectioneditplugin
     48svn up
     49python setup.py install
     50cd ..
     51cd tocmacro
     52svn up
     53python setup.py install
     54cd ..
     55cd trac-bzr
     56bzr pull
     57python setup.py install
     58cd ..
     59cd translatedpagesmacro
     60svn up
     61python setup.py install
     62}}}
     63
     64Upgrade Trac instance:
     65{{{
     66trac-admin /home/sahana/trac upgrade
     67trac-admin /home/sahana/trac wiki upgrade
     68trac-admin /home/sahana/trac repository resync '*'
     69}}}
     70
     71Restart Apache:
     72{{{
     73apache2ctl start
     74}}}
     75
     76Test!
     77
     78== Old: Migration from 0.11 to 0.12 via new VM ==
    279 * Check Plugin Dependencies:
    380  * [http://trac-hacks.org/wiki/AccountManagerPlugin AccountManagerPlugin] - ok
     
    156233reboot
    157234}}}
     235}}}