##// END OF EJS Templates
docs: rename docs/installation_win.rst to docs/installation_win_old.rst, preparing for new docs
docs: rename docs/installation_win.rst to docs/installation_win_old.rst, preparing for new docs

File last commit:

r4192:e73a69cb kallithea-2.2.5-r...
r4814:d95ea48a default
Show More
upgrade.rst
107 lines | 3.1 KiB | text/x-rst | RstLexer
docs update
r640 .. _upgrade:
docs
r2095 =======
docs update
r640 Upgrade
=======
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806 Upgrading from PyPI (aka "Cheeseshop")
---------------------------------------
docs update
r640
merge docs in beta with those corrected by Jason Harris
r1092 .. note::
whitespace cleanup
r3224 Firstly, it is recommended that you **always** perform a database and
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806 configuration backup before doing an upgrade.
whitespace cleanup
r3224
(These directions will use '{version}' to note that this is the version of
Bradley M. Kuhn
Rename some strings examples and commands in documentation
r4192 Kallithea that these files were used with. If backing up your Kallithea
whitespace cleanup
r3224 instance from version 1.3.6 to 1.4.0, the ``production.ini`` file would be
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806 backed up to ``production.ini.1-3-6``.)
Bradley M. Kuhn
Rename some strings examples and commands in documentation
r4192 If using a sqlite database, stop the Kallithea process/daemon/service, and
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806 then make a copy of the database file::
Bradley M. Kuhn
Rename init scripts and fix references inside them
r4190 service kallithea stop
Bradley M. Kuhn
Rename some strings examples and commands in documentation
r4192 cp kallithea.db kallithea.db.{version}
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806
merge docs in beta with those corrected by Jason Harris
r1092
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806 Back up your configuration file::
cp production.ini production.ini.{version}
Ensure that you are using the Python Virtual Environment that you'd originally
Bradley M. Kuhn
Rename some strings examples and commands in documentation
r4192 installed Kallithea in::
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806
pip freeze
Bradley M. Kuhn
Rename some strings examples and commands in documentation
r4192 will list all packages installed in the current environment. If Kallithea
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806 isn't listed, change virtual environments to your venv location::
Bradley M. Kuhn
Rename some strings examples and commands in documentation
r4192 source /opt/kallithea-venv/bin/activate
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806
Bradley M. Kuhn
Rename some strings examples and commands in documentation
r4192 Once you have verified the environment you can upgrade ``Kallithea`` with::
docs update
r640
Bradley M. Kuhn
Rename some strings examples and commands in documentation
r4192 easy_install -U kallithea
docs update
r640
Or::
Bradley M. Kuhn
Rename some strings examples and commands in documentation
r4192 pip install --upgrade kallithea
docs update
r640
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806 Then run the following command from the installation directory::
whitespace cleanup
r3224
Bradley M. Kuhn
Rename some strings examples and commands in documentation
r4192 paster make-config Kallithea production.ini
whitespace cleanup
r3224
Bradley M. Kuhn
Rename some strings examples and commands in documentation
r4192 This will display any changes made by the new version of Kallithea to your
whitespace cleanup
r3224 current configuration. It will try to perform an automerge. It's recommended
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806 that you re-check the content after the automerge.
docs update
r640
docs and readme update
r1062 .. note::
docs
r2094 Please always make sure your .ini files are up to date. Often errors are
upgrade docs update
r2071 caused by missing params added in new versions.
docs and readme update
r1062
whitespace cleanup
r3224 It is also recommended that you rebuild the whoosh index after upgrading since
upgrade docs update
r2071 the new whoosh version could introduce some incompatible index changes. Please
Read the changelog to see if there were any changes to whoosh.
docs update
r845
merge docs in beta with those corrected by Jason Harris
r1092 The final step is to upgrade the database. To do this simply run::
docs update
r845
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806 paster upgrade-db production.ini
whitespace cleanup
r3224
merge docs in beta with those corrected by Jason Harris
r1092 This will upgrade the schema and update some of the defaults in the database,
whitespace cleanup
r3224 and will always recheck the settings of the application, if there are no new
docs update
r1123 options that need to be set.
docs update
r845
docs updates
r3335
.. note::
DB schema upgrade library has some limitations and can sometimes fail if you try to
upgrade from older major releases. In such case simply run upgrades sequentially, eg.
upgrading from 1.2.X to 1.5.X should be done like that: 1.2.X. > 1.3.X > 1.4.X > 1.5.X
Bradley M. Kuhn
Rename some strings examples and commands in documentation
r4192 You can always specify what version of Kallithea you want to install for example in pip
`pip install Kallithea==1.3.6`
docs updates
r3335
whitespace cleanup
r3224 You may find it helpful to clear out your log file so that new errors are
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806 readily apparent::
Bradley M. Kuhn
Rename some strings examples and commands in documentation
r4192 echo > kallithea.log
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806
Bradley M. Kuhn
Rename some strings examples and commands in documentation
r4192 Once that is complete, you may now start your upgraded Kallithea Instance::
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806
Bradley M. Kuhn
Rename init scripts and fix references inside them
r4190 service kallithea start
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806
Or::
Bradley M. Kuhn
Rename some strings examples and commands in documentation
r4192 paster serve /var/www/kallithea/production.ini
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806
added info to ugprade docs to restart celery
r2115 .. note::
If you're using Celery, make sure you restart all instances of it after
upgrade.
docs update
r640
whitespace cleanup
r3224 .. _virtualenv: http://pypi.python.org/pypi/virtualenv
docs update
r640 .. _python: http://www.python.org/
.. _mercurial: http://mercurial.selenic.com/
.. _celery: http://celeryproject.org/
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806 .. _rabbitmq: http://www.rabbitmq.com/