##// END OF EJS Templates
merged beta into stable
merged beta into stable

File last commit:

r2825:f7a52d54 merge default
r2877:d6ac3baa merge default
Show More
upgrade.rst
99 lines | 2.7 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::
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806 Firstly, it is recommended that you **always** perform a database and
configuration backup before doing an upgrade.
(These directions will use '{version}' to note that this is the version of
Rhodecode that these files were used with. If backing up your RhodeCode
instance from version 1.3.6 to 1.4.0, the ``production.ini`` file would be
backed up to ``production.ini.1-3-6``.)
If using a sqlite database, stop the Rhodecode process/daemon/service, and
then make a copy of the database file::
service rhodecode stop
cp rhodecode.db rhodecode.db.{version}
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
installed Rhodecode in::
pip freeze
will list all packages installed in the current environment. If Rhodecode
isn't listed, change virtual environments to your venv location::
source /opt/rhodecode-venv/bin/activate
Once you have verified the environment you can upgrade ``Rhodecode`` with::
docs update
r640
easy_install -U rhodecode
Or::
pip install --upgrade rhodecode
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::
docs update
r640
paster make-config RhodeCode production.ini
merge docs in beta with those corrected by Jason Harris
r1092 This will display any changes made by the new version of RhodeCode to your
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806 current configuration. It will try to perform an automerge. It's recommended
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
docs update
r1123 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
docs update
r845
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,
docs update
r1123 and will always recheck the settings of the application, if there are no new
options that need to be set.
docs update
r845
H Waldo G
fleshing out the Upgrade doc, and modified the references to Cheeseshop in the Install doc
r2806 You may find it helpful to clear out your log file so that new errors are
readily apparent::
echo > rhodecode.log
Once that is complete, you may now start your upgraded Rhodecode Instance::
service rhodecode start
Or::
paster serve /var/www/rhodecode/production.ini
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
.. _virtualenv: http://pypi.python.org/pypi/virtualenv
.. _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/