如何在 Ubuntu 20.04 LTS 上安装 Mantis Bug Tracker

在本教程中,我们将向您展示如何在 Ubuntu 20.04 LTS 上安装 Mantis Bug Tracker。 对于那些不知道的人,Mantis 是一个免费且流行的开源错误跟踪系统。 它是用 PHP 编写的,支持所有类型的数据库服务器。 它提供了一个专业的仪表板来管理分配给用户的错误。 它支持强大的访问控制,提供每个项目基础用户访问。 它非常灵活,您可以自定义问题字段、通知和工作流程。

本文假设您至少具备 Linux 的基本知识,知道如何使用 shell,最重要的是,您将网站托管在自己的 VPS 上。 安装非常简单,假设您在 root 帐户下运行,如果不是,您可能需要添加 ‘sudo‘ 到命令以获取 root 权限。 我将向您展示在 Ubuntu 20.04 (Focal Fossa) 上逐步安装 Mantis Bug Tracker。 对于 Ubuntu 18.04、16.04 和任何其他基于 Debian 的发行版(如 Linux Mint),您可以按照相同的说明进行操作。

在 Ubuntu 20.04 LTS Focal Fossa 上安装 Mantis Bug Tracker

步骤 1. 首先,通过运行以下命令确保所有系统包都是最新的 apt 终端中的命令。

sudo apt update sudo apt upgrade

步骤 2. 安装 LAMP 堆栈。

需要 Ubuntu 20.04 LAMP 服务器。 如果您没有安装 LAMP,您可以在此处按照我们的指南进行操作。

步骤 3. 在 Ubuntu 20.04 上下载并安装 Mantis Bug Tracker。

现在我们从官方页面下载最新的稳定版 MantisBT:

wget https://tenet.dl.sourceforge.net/project/mantisbt/mantis-stable/2.24.3/mantisbt-2.24.3.zip

下载后,解压缩 Mantis 存档:

unzip mantisbt-2.24.3.zip mv mantisbt-2.24.3 /var/www/html/mantisbt

我们将需要更改一些文件夹权限:

chown apache:apache -R /var/www/html/mantisbt

步骤 4. 为 Mantis Bug Tracker 配置 MariaDB。

默认情况下,MariaDB 未加固。 您可以使用 mysql_secure_installation 脚本。 您应该仔细阅读下面的每个步骤,这些步骤将设置 root 密码、删除匿名用户、禁止远程 root 登录以及删除测试数据库和访问安全 MariaDB。

mysql_secure_installation

像这样配置它:

- Set root password? [Y/n] y - Remove anonymous users? [Y/n] y - Disallow root login remotely? [Y/n] y - Remove test database and access to it? [Y/n] y - Reload privilege tables now? [Y/n] y

接下来,我们需要登录 MariaDB 控制台并为 Mantis Bug Tracker 创建一个数据库。 运行以下命令:

mysql -u root -p

这将提示您输入密码,因此输入您的 MariaDB 根密码并点击 Enter. 登录到数据库服务器后,您需要为 Mantis Bug Tracker 安装创建一个数据库:

MariaDB [(none)]> CREATE DATABASE mantisdb; MariaDB [(none)]> GRANT ALL PRIVILEGES ON mantisdb.* TO 'mantis'@'localhost' IDENTIFIED BY 'your-strong-passwd'; MariaDB [(none)]> FLUSH PRIVILEGES; MariaDB [(none)]> q

步骤 5. 配置 Apache 对于螳螂。

现在我们为 Apache 管理螳螂:

sudo nano /etc/apache2/sites-enabled/mantis.conf

添加以下行:

VirtualHost *:80>    ServerAdmin [email protected]    DocumentRoot "/var/www/html/mantisbt"    ServerName idroot.us    ServerAlias www.idroot.us    ErrorLog "/var/log/apache2/mantisbt-error_log"    TransferLog "/var/log/apache2/mantisbt-access_log"        <Directory "/var/www/html/mantisbt">           DirectoryIndex index.php index.html           Options FollowSymLinks           AllowOverride None           Require all granted           Options MultiViews FollowSymlinks       </Directory> </VirtualHost>

Save 并退出配置文件。 重新启动 apache 服务以使更改生效:

sudo a2ensite mantis.conf sudo a2enmod rewrite sudo systemctl restart apache2

步骤 6. 配置防火墙。

您需要允许端口 80 通过 Mantis BT 的 UFW 防火墙。 您可以通过以下命令启用 UFW 防火墙并检查其状态:

sudo ufw enable sudo ufw allow 80

步骤 7. 访问 Mantis Bug Tracker。

Mantis Bug Tracker 默认在 HTTP 端口 80 上可用。 打开您喜欢的浏览器并导航到 https://your-domain.com 或者 https://server-ip-address 并完成所需的步骤以完成安装。

恭喜! 您已成功安装 Mantis。 感谢您使用本教程在您的 Ubuntu 20.04 LTS Focal Fossa 系统上安装 Mantis Bug Tracker。 如需更多帮助或有用信息,我们建议您查看 螳螂官方网站.