{"id":8642,"date":"2024-05-21T17:26:34","date_gmt":"2024-05-21T17:26:34","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=8642"},"modified":"2024-10-14T17:17:12","modified_gmt":"2024-10-14T17:17:12","slug":"how-to-install-mantis-bug-tracker-linux-ubuntu-debian","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/","title":{"rendered":"How to install Mantis Bug Tracker on Linux"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"675\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/05\/mantis_install_en.jpg\" alt=\"Install Mantis Bug Tracker on Linux Ubuntu Centos RHEL debian\" class=\"wp-image-8651\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/05\/mantis_install_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/05\/mantis_install_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/05\/mantis_install_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/05\/mantis_install_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/05\/mantis_install_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<p><strong>Mantis Bug Tracker<\/strong> is a popular open-source web-based bug tracking system. It is written in PHP and uses a MySQL\/MariaDB database to store data. Mantis Bug Tracker is a great tool for developers and project managers to keep track of issues, bugs, and tasks in software development projects. In this article, we will go through the steps to install Mantis Bug Tracker on a Linux system.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"prerequisites\">Prerequisites<\/h2>\n\n\n\n<p>Before we begin the installation process, we need to ensure that our system meets the following prerequisites:<\/p>\n\n\n\n<ol>\n<li><strong>Web Server<\/strong>: You will need a web server installed on your Linux system. Apache HTTP Server is a popular choice, and we will use it in this guide.<\/li>\n\n\n\n<li><strong>PHP<\/strong>: Mantis Bug Tracker is written in PHP, so you will need to have PHP installed on your system. We recommend using the latest stable version of PHP, which at the time of writing is PHP 8.1.<\/li>\n\n\n\n<li><strong>Database Server<\/strong>: Mantis Bug Tracker requires a MySQL or MariaDB database to store its data. We will be using MariaDB in this guide.<\/li>\n\n\n\n<li><strong>Additional PHP Extensions<\/strong>: Mantis Bug Tracker requires several PHP extensions to be installed and enabled, including:\n<ul>\n<li><code>php-gd<\/code>&nbsp;(for image processing)<\/li>\n\n\n\n<li><code>php-mbstring<\/code>&nbsp;(for multi-byte string handling)<\/li>\n\n\n\n<li><code>php-curl<\/code>&nbsp;(for HTTP client functionality)<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<p>Once you have verified that your system meets these prerequisites, you can proceed with the installation process.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-1-install-apache-http-server\">Step 1: Install Apache HTTP Server<\/h2>\n\n\n\n<p>If you don&#8217;t already have Apache HTTP Server installed on your Linux system, you can install it using your distribution&#8217;s package manager. For example, on Ubuntu\/Debian, you can use the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt-get install apache2<\/code><\/pre>\n\n\n\n<p>On CentOS\/RHEL, you can use:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo yum install httpd<\/code><\/pre>\n\n\n\n<p>After installing Apache, make sure to start the service and enable it to start automatically on system boot:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo systemctl start apache2    <em># On Ubuntu\/Debian and CentOS\/RHEL<\/em>\n$ sudo systemctl enable apache2   <em># On Ubuntu\/Debian and CentOS\/RHEL<\/em><\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-2-install-mariadb\">Step 2: Install MariaDB<\/h2>\n\n\n\n<p>Next, we need to install the MariaDB database server. On <strong>Ubuntu \/ Debian<\/strong>, you can use the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt-get install mariadb-server<\/code><\/pre>\n\n\n\n<p>On CentOS\/RHEL, you can use:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo yum install mariadb-server<\/code><\/pre>\n\n\n\n<p>After installing MariaDB, secure the installation by running the following command and following the on-screen prompts:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo mysql_secure_installation<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-3-install-php-and-required-extensions\">Step 3: Install PHP and Required Extensions<\/h2>\n\n\n\n<p>Mantis Bug Tracker requires PHP and several additional PHP extensions. On Ubuntu\/Debian, you can install PHP and the required extensions using the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt-get install php php-gd php-mbstring php-curl<\/code><\/pre>\n\n\n\n<p>On CentOS\/RHEL, you can use:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo yum install php php-gd php-mbstring php-curl<\/code><\/pre>\n\n\n\n<p>After installing PHP and the required extensions, restart the Apache web server to ensure that the changes take effect:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo systemctl restart apache2   <em># On Ubuntu\/Debian<\/em>\n$ sudo systemctl restart httpd     <em># On CentOS\/RHEL<\/em><\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-4-download-mantis-bug-tracker\">Step 4: Download Mantis Bug Tracker<\/h2>\n\n\n\n<p>Now that we have all the required dependencies installed, we can download the latest version of Mantis Bug Tracker from the official website. At the time of writing, the latest stable version is 2.26.2.<\/p>\n\n\n\n<p>You can download the Mantis Bug Tracker package from the official website using the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ wget https:\/\/sourceforge.net\/projects\/mantisbt\/files\/mantis-stable\/2.26.2\/mantisbt-2.26.2.tar.gz<\/code><\/pre>\n\n\n\n<p>Once the download is complete, extract the package using the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ tar -xvzf mantisbt-2.26.2.tar.gz<\/code><\/pre>\n\n\n\n<p>This will create a new directory called&nbsp;<code>mantisbt-2.26.2<\/code>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-5-configure-apache-for-mantis-bug-tracker\">Step 5: Configure Apache for Mantis Bug Tracker<\/h2>\n\n\n\n<p>Next, we need to configure Apache to serve the Mantis Bug Tracker application. We will create a new virtual host configuration file for Mantis Bug Tracker.<\/p>\n\n\n\n<ul>\n<li>Create a new configuration file for Mantis Bug Tracker:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo nano \/etc\/apache2\/sites-available\/mantis.conf<\/code><\/pre>\n\n\n\n<ul>\n<li>Add the following content to the file, replacing&nbsp;<code>\/path\/to\/mantis<\/code>&nbsp;with the actual path to the extracted Mantis Bug Tracker directory:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"apacheconf\" class=\"language-apacheconf\"><strong>&lt;VirtualHost *:80&gt;<\/strong>\n      ServerName mantis.example.com\n      DocumentRoot \/path\/to\/mantis\n\n      <strong>&lt;Directory \/path\/to\/mantis&gt;<\/strong>\n         Options FollowSymLinks\n         AllowOverride All\n         Require all granted\n      <strong>&lt;\/Directory&gt;<\/strong>\n\n      ErrorLog ${APACHE_LOG_DIR}\/mantis_error.log\n      CustomLog ${APACHE_LOG_DIR}\/mantis_access.log combined\n<strong>&lt;\/VirtualHost&gt;<\/strong><\/code><\/pre>\n\n\n\n<p>This configuration tells Apache to serve the Mantis Bug Tracker application from the specified directory and sets up a virtual host for&nbsp;<code>mantis.example.com<\/code>. You can replace&nbsp;<code>mantis.example.com<\/code>&nbsp;with the domain or IP address you want to use for accessing Mantis Bug Tracker.<\/p>\n\n\n\n<ul>\n<li>Save and close the file.<\/li>\n\n\n\n<li>Enable the new virtual host configuration:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo a2ensite mantis.conf<\/code><\/pre>\n\n\n\n<ul>\n<li>Disable the default Apache virtual host configuration (if necessary):<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo a2dissite 000-default.conf<\/code><\/pre>\n\n\n\n<ul>\n<li>Restart Apache to apply the changes:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo systemctl restart apache2<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-6-create-a-database-for-mantis-bug-tracker\">Step 6: Create a Database for Mantis Bug Tracker<\/h2>\n\n\n\n<p>Mantis Bug Tracker requires a MySQL\/MariaDB database to store its data. We need to create a new database and a user with appropriate permissions for Mantis Bug Tracker.<\/p>\n\n\n\n<ul>\n<li>Log in to the MariaDB shell:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo mysql -u root -p<\/code><\/pre>\n\n\n\n<p>Enter the root password when prompted.<\/p>\n\n\n\n<ul>\n<li>Create a new database for Mantis Bug Tracker:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"sql\" class=\"language-sql\">CREATE DATABASE mantisdb CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;<\/code><\/pre>\n\n\n\n<ul>\n<li>Create a new user and grant privileges to the new database:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"sql\" class=\"language-sql\">CREATE USER 'mantisuser'@'localhost' IDENTIFIED BY 'YourStrongPassword';\nGRANT ALL PRIVILEGES ON mantisdb.* TO 'mantisuser'@'localhost';<\/code><\/pre>\n\n\n\n<p>Replace&nbsp;<code>YourStrongPassword<\/code>&nbsp;with a strong password of your choice.<\/p>\n\n\n\n<ul>\n<li>Flush the privileges to apply the changes:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"sql\" class=\"language-sql\">FLUSH PRIVILEGES;<\/code><\/pre>\n\n\n\n<ul>\n<li>Exit the MariaDB shell:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"sql\" class=\"language-sql\">EXIT;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-7-configure-mantis-bug-tracker\">Step 7: Configure Mantis Bug Tracker<\/h2>\n\n\n\n<p>Now that we have the database set up, we can proceed with configuring Mantis Bug Tracker.<\/p>\n\n\n\n<ul>\n<li>Navigate to the Mantis Bug Tracker directory:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ cd \/path\/to\/mantis<\/code><\/pre>\n\n\n\n<ul>\n<li>Copy the sample configuration file:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ cp config_defaults_inc.php.sample config_inc.php<\/code><\/pre>\n\n\n\n<ul>\n<li>Open the&nbsp;<code>config_inc.php<\/code>&nbsp;file for editing:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ nano config_inc.php<\/code><\/pre>\n\n\n\n<ul>\n<li>Locate the following lines in the file and update them with your database credentials:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">$g_database_type = 'mysqli';\n$g_hostname      = 'localhost';\n$g_db_username   = 'mantisuser';\n$g_db_password   = 'YourStrongPassword';\n$g_database_name = 'mantisdb';<\/code><\/pre>\n\n\n\n<p>Replace&nbsp;<code>YourStrongPassword<\/code>&nbsp;with the password you set for the&nbsp;<code>mantisuser<\/code>&nbsp;user earlier.<\/p>\n\n\n\n<ul>\n<li>Save and close the file.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-8-install-mantis-bug-tracker\">Step 8: Install Mantis Bug Tracker<\/h2>\n\n\n\n<p>Now that we have configured the database and updated the configuration file, we can proceed with installing Mantis Bug Tracker.<\/p>\n\n\n\n<ul>\n<li>Open your web browser and navigate to the following URL, replacing&nbsp;<code>mantis.example.com<\/code>&nbsp;with the domain or IP address you configured earlier:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">http:\/\/mantis.example.com\/admin\/install.php<\/code><\/pre>\n\n\n\n<ul>\n<li>You should see the Mantis Bug Tracker installation page. Follow the on-screen instructions to complete the installation process.<\/li>\n\n\n\n<li>During the installation process, you will be prompted to enter the database credentials you configured earlier.<\/li>\n\n\n\n<li>After completing the installation, you will be asked to create an administrator user account.<\/li>\n\n\n\n<li>Once the installation is complete, you can log in to the Mantis Bug Tracker administration panel using the administrator account you just created.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-9-configure-mantis-bug-tracker-optional\">Step 9: Configure Mantis Bug Tracker (Optional)<\/h2>\n\n\n\n<p>After the installation is complete, you may want to configure Mantis Bug Tracker to suit your needs. Here are some common configuration options:<\/p>\n\n\n\n<ul>\n<li><strong>Email Notifications<\/strong>: Mantis Bug Tracker can send email notifications for various events, such as new issues, updates, and comments. To configure email settings, go to the administration panel and navigate to &#8220;Manage&#8221; &gt; &#8220;Configuration&#8221; &gt; &#8220;Email Notifications&#8221;.<\/li>\n\n\n\n<li><strong>User Management<\/strong>: You can create and manage user accounts, assign user roles, and control access permissions. Navigate to &#8220;Manage&#8221; &gt; &#8220;Manage Users&#8221; in the administration panel.<\/li>\n\n\n\n<li><strong>Project Management<\/strong>: Mantis Bug Tracker allows you to create and manage multiple projects. You can configure project settings, assign users to projects, and customize project-specific workflows. Go to &#8220;Manage&#8221; &gt; &#8220;Manage Projects&#8221; in the administration panel.<\/li>\n\n\n\n<li><strong>Workflow Configuration<\/strong>: Mantis Bug Tracker provides a flexible workflow system that allows you to define custom issue statuses, priorities, and resolutions. You can customize these settings by navigating to &#8220;Manage&#8221; &gt; &#8220;Manage Config&#8221; &gt; &#8220;Workflow&#8221;.<\/li>\n\n\n\n<li><strong>Customization<\/strong>: Mantis Bug Tracker offers various customization options, such as themes, plugins, and language translations. You can explore these options by navigating to the respective sections in the administration panel.<\/li>\n<\/ul>\n\n\n\n<p>Remember to thoroughly review the Mantis Bug Tracker documentation and community resources for more advanced configuration options and best practices.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-10-secure-mantis-bug-tracker\">Step 10: Secure Mantis Bug Tracker<\/h2>\n\n\n\n<p>After installing and configuring Mantis Bug Tracker, it&#8217;s important to take steps to secure your installation. Here are some recommended security measures:<\/p>\n\n\n\n<ol>\n<li><strong>Update Regularly<\/strong>: Keep Mantis Bug Tracker, PHP, and other dependencies up to date with the latest security patches and updates.<\/li>\n\n\n\n<li><strong>Configure Access Permissions<\/strong>: Restrict access to the Mantis Bug Tracker installation directory and sensitive configuration files by properly setting permissions.<\/li>\n\n\n\n<li><strong>Enable HTTPS<\/strong>: Configure Apache to serve Mantis Bug Tracker over HTTPS to encrypt communication between the server and clients.<\/li>\n\n\n\n<li><strong>Implement Authentication<\/strong>: Consider implementing additional authentication measures, such as two-factor authentication or integration with a centralized authentication system like LDAP or Active Directory.<\/li>\n\n\n\n<li><strong>Restrict Access to Admin Panel<\/strong>: Limit access to the Mantis Bug Tracker administration panel to authorized users only.<\/li>\n\n\n\n<li><strong>Monitor Logs<\/strong>: Regularly monitor Apache and Mantis Bug Tracker logs for any suspicious activity or errors.<\/li>\n\n\n\n<li><strong>Backup Data<\/strong>: Implement a regular backup strategy for your Mantis Bug Tracker database and configuration files to ensure data recovery in case of any issues.<\/li>\n\n\n\n<li><strong>Disable Unused Features<\/strong>: Disable any unused features or plugins in Mantis Bug Tracker to reduce the attack surface.<\/li>\n\n\n\n<li><strong>Follow Best Practices<\/strong>: Adhere to industry-standard security best practices, such as using strong passwords, limiting system permissions, and keeping software up to date.<\/li>\n<\/ol>\n\n\n\n<p>By following these security measures, you can help protect your Mantis Bug Tracker installation and ensure the confidentiality, integrity, and availability of your bug tracking data.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p>Mantis Bug Tracker is a powerful and feature-rich bug tracking system that can greatly improve the efficiency and organization of your software development projects. By following the steps outlined in this article, you should now have a working installation of Mantis Bug Tracker on your Linux system.<\/p>\n\n\n\n<p>Remember to regularly update Mantis Bug Tracker, PHP, and other dependencies to ensure security and stability. Additionally, take advantage of the various configuration options and customization features offered by Mantis Bug Tracker to tailor the system to your specific needs.<\/p>\n\n\n\n<p>If you encounter any issues during the installation or configuration process, refer to the official Mantis Bug Tracker documentation or seek assistance from the active community forums and support channels.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Mantis Bug Tracker is a popular open-source web-based bug tracking system. It is written in PHP and uses a MySQL\/MariaDB database to store data. Mantis Bug Tracker is a great tool for developers and project managers to keep track of issues, bugs, and tasks in software development projects. In this article, we will go through ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[188,279],"tags":[],"yoast_head":"\n<title>How to install Mantis Bug Tracker on Linux - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"Step-by-step guide on how to install and configure the Mantis Bug Tracker issue tracking system on a Linux server, covering prerequisites, Apache setup, database configuration, and security best practices.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install Mantis Bug Tracker on Linux - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"Step-by-step guide on how to install and configure the Mantis Bug Tracker issue tracking system on a Linux server, covering prerequisites, Apache setup, database configuration, and security best practices.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/\" \/>\n<meta property=\"og:site_name\" content=\"WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webhi.technology\" \/>\n<meta property=\"article:published_time\" content=\"2024-05-21T17:26:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-14T17:17:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/05\/mantis_install_en.jpg\" \/>\n<meta name=\"author\" content=\"webhi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:site\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"webhi\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"How to install Mantis Bug Tracker on Linux\",\"datePublished\":\"2024-05-21T17:26:34+00:00\",\"dateModified\":\"2024-10-14T17:17:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/\"},\"wordCount\":1440,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"articleSection\":[\"CMS &amp; Web development\",\"Softwares and Tools\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/\",\"name\":\"How to install Mantis Bug Tracker on Linux - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2024-05-21T17:26:34+00:00\",\"dateModified\":\"2024-10-14T17:17:12+00:00\",\"description\":\"Step-by-step guide on how to install and configure the Mantis Bug Tracker issue tracking system on a Linux server, covering prerequisites, Apache setup, database configuration, and security best practices.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webhi.com\/how-to\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Mantis Bug Tracker on Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"name\":\"WebHi Tutorials &amp; Documentations\",\"description\":\"System administration and knowledge base\",\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\",\"name\":\"WebHi Technology\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"width\":288,\"height\":95,\"caption\":\"WebHi Technology\"},\"image\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webhi.technology\",\"https:\/\/twitter.com\/WebHiTechnology\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\",\"name\":\"webhi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1784239260\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1784239260\",\"caption\":\"webhi\"},\"sameAs\":[\"https:\/\/www.webhi.com\/how-to\"],\"url\":\"https:\/\/www.webhi.com\/how-to\/author\/webhi\/\"}]}<\/script>\n","yoast_head_json":{"title":"How to install Mantis Bug Tracker on Linux - WebHi Tutorials &amp; Documentations","description":"Step-by-step guide on how to install and configure the Mantis Bug Tracker issue tracking system on a Linux server, covering prerequisites, Apache setup, database configuration, and security best practices.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/","og_locale":"en_US","og_type":"article","og_title":"How to install Mantis Bug Tracker on Linux - WebHi Tutorials &amp; Documentations","og_description":"Step-by-step guide on how to install and configure the Mantis Bug Tracker issue tracking system on a Linux server, covering prerequisites, Apache setup, database configuration, and security best practices.","og_url":"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/","og_site_name":"WebHi Tutorials &amp; Documentations","article_publisher":"https:\/\/www.facebook.com\/webhi.technology","article_published_time":"2024-05-21T17:26:34+00:00","article_modified_time":"2024-10-14T17:17:12+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/05\/mantis_install_en.jpg"}],"author":"webhi","twitter_card":"summary_large_image","twitter_creator":"@WebHiTechnology","twitter_site":"@WebHiTechnology","twitter_misc":{"Written by":"webhi","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"How to install Mantis Bug Tracker on Linux","datePublished":"2024-05-21T17:26:34+00:00","dateModified":"2024-10-14T17:17:12+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/"},"wordCount":1440,"commentCount":0,"publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"articleSection":["CMS &amp; Web development","Softwares and Tools"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/","url":"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/","name":"How to install Mantis Bug Tracker on Linux - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2024-05-21T17:26:34+00:00","dateModified":"2024-10-14T17:17:12+00:00","description":"Step-by-step guide on how to install and configure the Mantis Bug Tracker issue tracking system on a Linux server, covering prerequisites, Apache setup, database configuration, and security best practices.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-mantis-bug-tracker-linux-ubuntu-debian\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhi.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"How to install Mantis Bug Tracker on Linux"}]},{"@type":"WebSite","@id":"https:\/\/www.webhi.com\/how-to\/#website","url":"https:\/\/www.webhi.com\/how-to\/","name":"WebHi Tutorials &amp; Documentations","description":"System administration and knowledge base","publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webhi.com\/how-to\/#organization","name":"WebHi Technology","url":"https:\/\/www.webhi.com\/how-to\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/","url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","contentUrl":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","width":288,"height":95,"caption":"WebHi Technology"},"image":{"@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webhi.technology","https:\/\/twitter.com\/WebHiTechnology"]},{"@type":"Person","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54","name":"webhi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/","url":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1784239260","contentUrl":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1784239260","caption":"webhi"},"sameAs":["https:\/\/www.webhi.com\/how-to"],"url":"https:\/\/www.webhi.com\/how-to\/author\/webhi\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/8642"}],"collection":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/comments?post=8642"}],"version-history":[{"count":7,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/8642\/revisions"}],"predecessor-version":[{"id":9496,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/8642\/revisions\/9496"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=8642"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=8642"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=8642"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}