Install Mantis Bug Tracker with Nginx on Ubuntu 24.04
You install Mantis Bug Tracker with Nginx on Ubuntu 24.04 to set up a robust, open-source issue tracking system.
Mantis Bug Tracker is a popular web-based platform that helps you efficiently manage software bugs, feature requests, and project progress, offering a centralized hub for your development team’s tasks.
Nginx, a high-performance web server, integrates smoothly with PHP applications like Mantis, often via PHP-FPM, making this setup ideal for reliable bug tracking on your Ubuntu 24.04 server.
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
Nginx is a popular web server that Mantis Bug Tracker needs to run, and installing it on Ubuntu 24.04 is simple using the apt package manager.
To do that, open the Ubuntu terminal and run the commands below to install the Nginx web server.
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.
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
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.
Install the MariaDB database server on Ubuntu
Mantis Bug Tracker requires a database to store its data, and MariaDB is a great choice for this, easily installed on Ubuntu 24.04 using the apt command.
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.
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.
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.
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.
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.
- How to install MariaDB on Ubuntu Linux
- MariaDB without password prompt
Create a Mantis database
With MariaDB installed, the next step is to create a dedicated database for Mantis Bug Tracker, which we’ll name ‘mantisbtdb’ for this guide.
As part of the setup, we will create a mantisbtdb database and a user account called mantisbtdbuser.
Finally, we’ll grant the mantisbtdbuser full access to the mantisbtdb database.
All the database steps above can be done using the commands below:
But first, log on to the MariaDB database server:
sudo mariadb
Then run the commands below to complete the steps:
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
Ensure to replace ‘type_your_password_here ‘with your password.
Install PHP on Ubuntu Linux
Mantis Bug Tracker is built with PHP, so you need to install PHP and its required modules on your Ubuntu 24.04 system using the apt package manager.
Then, run the commands below to install the latest PHP version.
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
Download Mantis files
Downloading the latest Mantis Bug Tracker files is the next step, which you can get from the official Mantis BT website and place in the correct directory on your Ubuntu server.
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.
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.
Next, run the commands below to change Nginx root folder permissions so the Mantis app can function correctly.
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.
sudo nano /etc/nginx/sites-available/mantisbt.conf
Then, copy and paste the content block below into the Nginx server block.
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.
Then, run the commands below to enable the virtual host and restart the Nginx server.
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
Securing your Mantis Bug Tracker installation with HTTPS is important, and setting up a free Let’s Encrypt SSL/TLS certificate with Nginx on Ubuntu 24.04 is a straightforward process.
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.
http://mantisbt.example.com
The Mantis installation wizard should appear.
Type in the database name and password, then click Install/Upgrade Database.

Mantis should be ready to use.
Login with temporary account:
Username: administrator
Password: root

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?
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.
No comments yet — be the first to share your thoughts!