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

3.3 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. This is especially important for MySQL installations, since it does not support transactional migrations with changes to the table schema and you will have to rollback these changes manually. For PostgreSQL, if the Rails migrations fail, 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 7.0.0 is a major upgrade, you will need to perform some basic manual steps to upgrade your package.

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

APT-based systems (Debian, Ubuntu)

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

YUM-based systems (CentOS, RHEL)

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

SUSE Linux Enterprise Server 12

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