Install OpenProject on Ubuntu 22.04|20.04|18.04|16.04

ComputingPost
4 min readNov 18, 2022

--

Hello good folks!. This short guide will take you through the steps to Install OpenProject Community Edition on Ubuntu 22.04|20.04|18.04|16.04 LTS. OpenProject is a powerful project management and support tool for small to large teams that help you throughout the entire project management lifecycle.

Outstanding features of OpenProject

  • Project planning and scheduling
  • Product roadmap and release planning
  • Task management and team collaboration
  • Agile and Scrum
  • Time tracking, cost reporting, and budgeting
  • Bug tracking
  • Wikis
  • Forums
  • Meeting agendas and meeting minutes

Step 1: Update System and install transport-https

Kick off the installation by ensuring your apt package list is updated and installing the transport-httpspackage:

sudo apt update && sudo apt -y full-upgrade

[ -f /var/run/reboot-required ] && sudo reboot -f

Step 2 Add OpenProject Repository

Import the PGP key used to sign OpenProject packages:

sudo apt update && sudo apt install apt-transport-https ca-certificates wget

curl https://dl.packager.io/srv/opf/openproject/key | gpg --dearmor > openproject.gpg

sudo install -o root -g root -m 644 openproject.gpg /etc/apt/trusted.gpg.d

Enable OpenProject repository by running the commands:

Ubuntu 22.04:

sudo wget -O /etc/apt/sources.list.d/openproject.list https://dl.packager.io/srv/opf/openproject/stable/12/installer/ubuntu/22.04.repo

Ubuntu 20.04:

sudo wget -O /etc/apt/sources.list.d/openproject.list https://dl.packager.io/srv/opf/openproject/stable/12/installer/ubuntu/20.04.repo

Ubuntu 18.04:

sudo wget -O /etc/apt/sources.list.d/openproject.list https://dl.packager.io/srv/opf/openproject/stable/12/installer/ubuntu/18.04.repo

Ubuntu 16.04:

sudo wget -O /etc/apt/sources.list.d/openproject.list https://dl.packager.io/srv/opf/openproject/stable/12/installer/ubuntu/16.04.repo

Step 3: Install OpenProject Community Edition on Ubuntu

Once you’ve added the repository, proceed to install OpenProject Community Edition on Ubuntu 22.04/20.04/18.04/16.04.

sudo apt update

sudo apt install openproject

The openproject package provides an installer which installs all dependencies and configures OpenProject on Ubuntu.

sudo openproject configure

Select if to use external database or install one locally.

install-openproject-debian-10-01-768x412

Choose to install Apache2 web server.

install-openproject-debian-10-02-768x474

Set the FQDN for the server.

install-openproject-debian-10-03-768x412

Set project path prefix. If you leave it the installation will be on the root of your domain.

install-openproject-debian-10-04-768x420

Choose it to use SSL.

install-openproject-debian-10-05-768x427

If you want to yse SVN, you can choose to install it. Git is on the next screen.

install-openproject-debian-10-06-768x377

I’ll choose to install and use Git.

install-openproject-debian-10-07-768x426

Enter directory to host Git repositories.

install-openproject-debian-10-08-768x431

Do the same for CGI scripts.

install-openproject-debian-10-09-768x439

Set sendmail application to be used.

install-openproject-debian-10-10-768x391

Enter admin email to be used for access and notifications.

install-openproject-debian-10-11-768x387

Then finally install Memcache server.

install-openproject-debian-10-12-768x438

Step 4: Access OpenProject Dashboard

Visit the URL http://example.com/openproject/login

install-openproject-debian-10-13-768x262

To Login to the web console as admin user:

Username: admin

Password: admin

You’ll be required to change the admin password after the first login.

install-openproject-debian-10-14-768x251

Thanks for using our guide to install OpenProject on Ubuntu 22.04/20.04/18.04/16.04. Refer to OpenProject official documentation for more reading.

https://www.computingpost.com/install-openproject-on-ubuntu-22-0420-0418-0416-04/?feed_id=19722&_unique_id=6376e31bbc15a

--

--

ComputingPost

ComputingPost — Linux Howtos, Tutorials, Guides, News, Tips and Tricks.