Upgrading a source install

Note

Before upgrading CKAN you should check the compatibility of any custom themes or extensions you’re using, check the changelog, and backup your database. See Upgrading CKAN.

The process for upgrading a source install is the same, no matter what type of CKAN release you’re upgrading to:

  1. Check the Changelog for changes regarding the required 3rd-party packages and their minimum versions (e.g. web, database and search servers) and update their installations if necessary.

  2. Activate your virtualenv and switch to the ckan source directory, e.g.:

    . /usr/lib/ckan/default/bin/activate
    cd /usr/lib/ckan/default/src/ckan
  3. Checkout the new CKAN version from git, for example:

    git fetch
    git checkout ckan-2.10.4

    If you have any CKAN extensions installed from source, you may need to checkout newer versions of the extensions at this point as well. Refer to the documentation for each extension.

    As of CKAN 2.6 branch naming has changed. See Doing a CKAN release for naming conventions. Specific patches and minor versions can be checked-out using tags.

  4. Update CKAN’s dependencies:

    pip install --upgrade -r requirements.txt
    
  5. Register any new or updated plugins:

    python setup.py develop
    
  6. If there have been changes in the Solr schema (check the Changelog to find out) you need to restart Jetty for the changes to take effect:

    sudo service jetty restart
    
  7. If there have been changes in the database schema (check the Changelog to find out) you need to upgrade your database schema.

  8. If new configuration options have been introduced (check the Changelog to find out) then check whether you need to change them from their default values. See Configuration Options for details.

  9. Rebuild your search index by running the ckan search-index rebuild command:

    ckan -c /path/to/ckan.ini search-index rebuild -r --config=/etc/ckan/default/ckan.ini

    See search-index: Rebuild search index for details of the ckan search-index rebuild command.

  10. Finally, restart your web server. For example if you have deployed CKAN using a package install, run this command:

    sudo supervisorctl restart ckan-uwsgi:*
  11. You’re done!

You should now be able to visit your CKAN website in your web browser and see that it’s running the new version of CKAN.