Skip to content
Follow
CMS

Install Mantis Bug Tracker with Nginx on Ubuntu 24.04

Richard
Written by
Richard
Mar 18, 2025 Updated Jul 13, 2026 8 min read
Install Mantis Bug Tracker with Nginx on Ubuntu 24.04
Install Mantis Bug Tracker with Nginx on Ubuntu 24.04

Installing Mantis Bug Tracker with Nginx on Ubuntu 24.04 sets up a free, web-based system for tracking software bugs and project tasks.

Mantis Bug Tracker is a tool that helps you keep track of issues like software bugs, feature requests, and other development work in one place. It’s great for teams working on projects.

Nginx is a fast web server that works with PHP applications. It uses PHP-FPM to handle the code that Mantis needs. This combination makes sure your Ubuntu server can run Mantis smoothly.

⚡ Quick Answer

Install Nginx via `sudo apt install nginx`, then MariaDB with `sudo apt install mariadb-server`. Create a Mantis database using `sudo mariadb` and SQL commands. Finally, install PHP with `sudo apt install php-fpm php-intl php-mysql php-curl php-cli php-zip php-xml php-gd php-common php-mbstring`.

Install Nginx HTTP server on Ubuntu

You need a web server to run Mantis Bug Tracker, and Nginx is a good option for Ubuntu 24.04. Installing Nginx is simple using the apt command in your terminal, and this step sets up the web server needed for Mantis to work correctly.

To do that, open the Ubuntu terminal and run the commands below to install the Nginx web server.

🐧Bash / Shell
sudo apt update
sudo apt install nginx

Once Nginx is installed, the commands below can start, stop, and enable the Nginx web server to start automatically when your server boots up.

🐧Bash / Shell
sudo systemctl stop nginx
sudo systemctl start nginx
sudo systemctl enable nginx

You can test that the Nginx web server is running by opening your web browser and browsing to the server’s local host or IP address.

http://localhost

Nginx default welcome page on Ubuntu 24.04
Nginx default welcome page on Ubuntu 24.04

When you see the Welcome to nginx!, it means the Nginx HTTP server is successfully installed.

Additional help on installing Nginx on Ubuntu is in the link below.

How to install Nginx on Ubuntu

Install the MariaDB database server on Ubuntu

Mantis Bug Tracker needs a database to keep all its information, and MariaDB is a reliable choice for Ubuntu 24.04. Installing MariaDB is easy using the apt command in your terminal, preparing the database system that Mantis will use.

To install and use the MariaDB database server, use the instructions below.

Open the Ubuntu terminal and run the commands below to install the MariaDB database server.

🐧Bash / Shell
sudo apt update
sudo apt install mariadb-server

Once the MariaDB database server is installed, use the commands below to stop, start, and enable the MariaDB server to start automatically when the server boots.

🐧Bash / Shell
sudo systemctl stop mariadb
sudo systemctl start mariadb
sudo systemctl enable mariadb

Run the following commands to validate and test if the MariaDB database server is installed successfully.

🐧Bash / Shell
sudo mariadb

Once you run the commands above, it will log you onto the MariaDB console and display a message similar to the one below.

💻Code
Welcome to the MariaDB monitor.  Commands end with ; or g.
Your MariaDB connection id is 32
Server version: 10.11.2-MariaDB-1 Ubuntu 23.04

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.

MariaDB [(none)]> 

The message tells you that the server is installed successfully.

Additional help on installing MariaDB.

Create a Mantis database

After installing MariaDB, you must create a specific database for Mantis Bug Tracker to store its project and issue data. We will create a database named ‘mantisbtdb’ and a user ‘mantisbtdbuser’ with full permissions for Mantis.

As part of the setup, we will create a mantisbtdb database and a user account called mantisbtdbuser.

The `mantisbtdbuser` database user receives full access to the `mantisbtdb` database. This database access allows Mantis Bug Tracker to read and write data. Mantis Bug Tracker needs this data to function correctly after its installation on Ubuntu 24.04.

All the database steps above can be done using the commands below:

But first, log on to the MariaDB database server:

🐧Bash / Shell
sudo mariadb

Then run the commands below to complete the steps:

💻Code
CREATE DATABASE mantisbtdb CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
CREATE USER mantisbtdbuser@localhost IDENTIFIED BY 'type_your_password_here';
GRANT ALL ON mantisbtdb.* TO mantisbtdbuser@localhost WITH GRANT OPTION;
FLUSH PRIVILEGES;
exit
⚠️Warning
Ensure to replace ‘type_your_password_here ‘with your password.

Install PHP on Ubuntu Linux

Mantis Bug Tracker uses PHP, so you need to install PHP and its necessary modules on your Ubuntu 24.04 system. Installing the latest PHP version and all required components is done with a single apt command, making sure PHP is ready for Mantis.

Then, run the commands below to install the latest PHP version.

🐧Bash / Shell
sudo apt install php-fpm php-intl php-mysql php-curl php-cli php-zip php-xml php-gd php-common php-mbstring php-xmlrpc php-bcmath php-json php-sqlite3 php-soap php-zip php-ldap php-imap

Additional help on installing PHP

How to install PHP on Ubuntu Linux

Download Mantis files

You need to download the Mantis Bug Tracker files to your server to get the software. The latest version can be found on the official Mantis BT website. After downloading the archive, you’ll extract it and put it in the right folder on your Ubuntu system.

To always install the latest version, check the download page for Mantis BT. Get the download link and download the archived package to your computer. Then, extract it.

⚠️Warning
First, navigate to the /tmp/ directory and download the Mantis files. Next, extract the content into the Mantis folder in the Nginx root directory.

The final step is to change the permissions. This will allow the Nginx web server to interact safely with the files, ensuring a secure environment for your Mantis installation.

Nginx root folder permissions must be changed so the Mantis bug tracker can function correctly. To grant the necessary permissions, run the commands `sudo chown -R www-data:www-data /var/www/mantis` and `sudo chmod -R 755 /var/www/mantis`. This ensures the web server can read and write files within the Mantis installation directory.

Command Prompt
cd /tmp
wget https://gigenet.dl.sourceforge.net/project/mantisbt/mantis-stable/2.27.1/mantisbt-2.27.1.zip
sudo unzip mantisbt-*.zip
sudo mv mantisbt-2.27.1 /var/www/mantisbt
sudo chown -R www-data:www-data /var/www/mantisbt/

Once you have completed all the above steps, continue configuring the Nginx web server below to serve the Mantis content.

Run the commands below to create a Nginx virtual host file for Mantis.

🐧Bash / Shell
sudo nano /etc/nginx/sites-available/mantisbt.conf

Then, copy and paste the content block below into the Nginx server block.

🐘PHP
server {
listen 80;
listen [::]:80;
root /var/www/mantisbt;
index index.php;
server_name mantisbt.example.com;

access_log /var/log/nginx/example.com.access.log;
error_log /var/log/nginx/example.com.error.log;

location / {
try_files $uri $uri/ /index.php?$args;
}

location ~ .php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php8.3-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}

Save the file.

You enable the Mantis Bug Tracker virtual host and restart the Nginx server by running these commands to apply the web server configuration changes.

🐧Bash / Shell
sudo ln -s /etc/nginx/sites-available/mantisbt.conf /etc/nginx/sites-enabled/
sudo systemctl restart nginx.service
sudo systemctl restart php8.3-fpm

Setup Let’s Encrypt SSL/TLS for Mantis

Making your Mantis Bug Tracker secure with HTTPS is important to protect data. You can easily set up a free Let’s Encrypt SSL/TLS certificate for Nginx on Ubuntu 24.04. This process makes sure the connection is safe for everyone using your Mantis.

Please read the post below for additional resources on installing and creating Let’s Encrypt SSL certificates for Nginx.

How to set up Let’s Encrypt SSL certificate for Nginx on Ubuntu Linux

Once you have restarted the Nginx web server, open your browser and browse to the server hostname or IP address defined in the Nginx server block.

💻Code
http://mantisbt.example.com

The Mantis installation wizard should appear.

Type in the database name and password, then click Install/Upgrade Database.

Mantis BT installation
Mantis BT installation

Mantis should be ready to use.

Login with temporary account:

Username: administrator
Password: root

Mantis BT login
Mantis BT login

That should do it!

Conclusion:

In summary, installing Mantis Bug Tracker with Nginx on Ubuntu 24.04 involves several key steps:

  • Successfully installed the Nginx web server to host Mantis.
  • Set up MariaDB as the database server to store Mantis data.
  • Created a dedicated database and user for Mantis, ensuring secure access.
  • Installed PHP and the necessary extensions for running a PHP application.
  • Downloaded and configured Mantis files in the Nginx root directory.
  • Set up Nginx virtual host for Mantis to manage requests efficiently.
  • Optionally configured Let’s Encrypt SSL/TLS for securing the Mantis installation.
  • Completed the Mantis installation process using the web-based setup wizard.

With these steps, you now have a functional Mantis Bug Tracker set up to help manage your software projects efficiently.

What is the alternative to Mantis bug tracker?

Other important factors to consider when researching alternatives to MantisBT include features and user interface. The best overall MantisBT alternative is Jira. Other similar apps like MantisBT are Bugzilla, GitLab, Trac, and Assembla.

Is mantis better than jira?

Workflow Customization: Jira offers a highly customizable workflow feature, allowing users to define and modify their own issue statuses, transitions, and conditions. On the other hand, Mantis has a more limited workflow customization capability, requiring users to rely on predefined workflows.

How to install mantis bug tracker?

Install and Launch Mantis Step 1 − To download Mantis, go to https://www.mantisbt.org/ and click Download. Step 2 − Click Download on the next page as shown in the following screenshot. Step 3 − Again click Download as shown in the following screenshot and save the . zip file.

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Install Mantis Bug Tracker on Ubuntu with Apache
CMS How to Install Mantis Bug Tracker on Ubuntu with Apache
How to Setup Joomla on Ubuntu with Nginx & Cloudflare
CMS How to Setup Joomla on Ubuntu with Nginx & Cloudflare
Change Power Button Behavior in Ubuntu Linux
Ubuntu Linux Change Power Button Behavior in Ubuntu Linux
How to Install Monica CRM on Ubuntu with Nginx
CMS How to Install Monica CRM on Ubuntu with Nginx

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *