OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/docs/operations/upgrading/packaged/upgrading.md

6.1 KiB

Upgrading your OpenProject installation

Note: this guide only applies if you've installed OpenProject using our DEB/RPM packages.

Upgrading OpenProject is as easy as installing a newer OpenProject package and running the openproject configure command.

Backup

We try to ensure your upgrade path is as smooth as possible. This means that the below update + configure step should be the only change needed to get up to date with our packaged installation.

In the event of an error during the migrations, you will still want to have a recent backup you can restore to before reaching out to us. If the Rails migrations fails, all previous changes will be rolled back for you to try again, or to install the older packages.

To perform a backup, run the following command

sudo openproject run backup

This will store the current database dump, attachments and config to /var/db/openproject/backup. For more information on the backup and restore mechanisms, check our detailed backup guide.

Debian / Ubuntu

sudo apt-get update
sudo apt-get install --only-upgrade openproject
sudo openproject configure

CentOS / RHEL

sudo yum update
sudo yum install openproject
sudo openproject configure

SuSE

sudo zypper update openproject
sudo openproject configure

Re-configuring the application

Using openproject configure, the wizard will display new steps that weren't available yet or had not been configured in previous installations. If you want to perform changes to your configuration or are unsure what steps are available, you can safely run openproject reconfigure to walk through the entire configuration process again.

Note that this still takes previous values into consideration. Values that should not change from your previous configurations can be skipped by pressing <Return>. This also applies for steps with passwords, which are shown as empty even though they may have a value. Skipping those steps equals to re-use the existing value.

Upgrading between major releases (DEB/RPM packages)

Since OpenProject 9.0.0 is a major upgrade, you will need to perform some basic manual steps to upgrade your package.

First, please check that the package repository is correct. Compare your local package repository with the one printed on your matching distribution on our Download and Installation page

Upgrade notes for OpenProject 10.0

These following points are some known issues around the update to 10.0.

It does not contain the entire list of changes. To see all changes, please browse the release notes.

Package repository moved into opf/openproject

The OpenProject community installation is now using the same repository as the OpenProject development core.

Please update your package source according to our Download and Installation page. You will need to replace stable/9 to stable/10 in order to perform the update.

MySQL support was dropped

After announcement in the previous major release, OpenProject 10.0 has dropped MySQL support.

For more information regarding motivation behind this and migration steps, please see https://www.openproject.org/deprecating-mysql-support/ In this post, you will find documentation for a mostly-automated migration script to PostgreSQL to help you get up and running with PostgreSQL.

Upgrade steps

If you have currently installed the stable 9.x release of OpenProject by using the stable/9 package source, you will need to adjust that package source to stable/10

APT-based systems (Debian, Ubuntu)

  • Update the reference to stable/9 in /etc/apt/sources.list.d/openproject.list to stable/10.
  • Perform the Upgrade steps as mentioned above in Upgrading your OpenProject installation

YUM-based systems (CentOS, RHEL)

  • Update the reference to stable/9 in /etc/yum.repos.d/openproject.repo to stable/10.
  • Perform the Upgrade steps as mentioned above in Upgrading your OpenProject installation

SUSE Linux Enterprise Server 12

  • Update the reference to stable/9 in /etc/zypp/repos.d/openproject.repo to stable/10.
  • Perform the Upgrade steps as mentioned above in Upgrading your OpenProject installation

Previous Upgrade notes

Upgrade notes for OpenProject 8.x. to 9.x

The package source has changed from openproject-ce to openproject. Please upgrade your repository source entry appropriately.

Upgrade notes for OpenProject 7.0. to 8.x

These following points are some known issues around the update to 8.0. It does not contain the entire list of changes. To see all changes, please browse the release notes.

Upgrades in NPM may result in package inconsistencies

As has been reported from the community, there appear to be issues with NPM leftover packages upgrading to OpenProject 8.0.0. This is due to the packages applying a delta between your installed version and the to-be-installed 8.0. package. In some cases such as SLES12 and Centos 7, the frontend/node_modules folder is not fully correctly replaced. This appears to hint at an issue with yum, the package manager behind both.

To ensure the package's node_modules folder matches your local version, we recommend you simply remove /opt/openproject/frontend/node_modules entirely before installing the package

rm -rf /opt/openproject/frontend/node_modules
# Continue with the installation steps described below

Migration from Textile to Markdown

OpenProject 8.0. has removed Textile, all previous content is migrated to GFM Markdown using pandoc. This will happen automatically during the migration run. A recent pandoc version will be downloaded by OpenProject.

For more information, please visit this separate guide: https://github.com/opf/openproject/tree/dev/docs/user/textile-to-markdown-migration