• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How to install Mantis bug tracker on Ubuntu 17.04

1875

To install Mantis bug tracker on Ubuntu 17.04

Mantis is a free and popular open source bug tracking system. It is written in PHP and supports all types of database server. It provides a professional dashboard to manage bugs assigned to the user. It supports powerful access control which provides per project base user access. It is very flexible so you can customize the issue fields, notifications, and workflow. Before installing the Mantis bug tracker, check whether the system contains a LAMP environement. This tutorial covers the ground on the installation procedure of Mantis bug tracker on Ubuntu 17.04.

Installation procedure

To proceed with the installation, open the PHP configuration file using the vim editor and execute the following changes. Save and exit the file.

root@linuxhelp:~# vim /etc/php/7.0/apache2/php.ini

date.timezone=Asia/Kolkata
upload_max_filesize = 50M
memory_limit = 128M

Download the package from it' s official website and run the wget command followed by the download link.

root@linuxhelp:~# wget wget https://excellmedia.dl.sourceforge.net/project/mantisbt/mantis-stable/2.4.0/mantisbt-2.4.0.zip
--2017-09-09 17:29:48--  http://wget/
Resolving wget (wget)... failed: Name or service not known.
wget: unable to resolve host address ‘ wget’ 
--2017-09-09 17:29:49--  https://excellmedia.dl.sourceforge.net/project/mantisbt/mantis-stable/2.4.0/mantisbt-2.4.0.zip
Resolving excellmedia.dl.sourceforge.net (excellmedia.dl.sourceforge.net)... 202.153.32.19
Connecting to excellmedia.dl.sourceforge.net (excellmedia.dl.sourceforge.net)|202.153.32.19|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 17145201 (16M) [application/octet-stream]
Saving to: ‘ mantisbt-2.4.0.zip’ 

mantisbt-2.4.0.zip   100%[===================> ]  16.35M  1.12MB/s    in 17s     
2017-09-09 17:30:07 (965 KB/s) - ‘ mantisbt-2.4.0.zip’  saved [17145201/17145201]

FINISHED --2017-09-09 17:30:07--
Total wall clock time: 19s
Downloaded: 1 files, 16M in 17s (965 KB/s)

Extract the downloaded package by running the following command.

root@linuxhelp:~# unzip mantis.zip -d /var/www/html/
root@linuxhelp:~# unzip mantisbt-2.4.0.zip
Archive:  mantisbt-2.4.0.zip
   creating: mantisbt-2.4.0/
  inflating: mantisbt-2.4.0/manage_config_workflow_page.php  
  inflating: mantisbt-2.4.0/manage_user_proj_delete.php  
  inflating: mantisbt-2.4.0/query_store.php  
  inflating: mantisbt-2.4.0/manage_plugin_upgrade.php  
   creating: mantisbt-2.4.0/scripts/
  inflating: mantisbt-2.4.0/scripts/travis_script.sh  
  inflating: mantisbt-2.4.0/scripts/Web.config  
.
.
.
.
inflating: mantisbt-2.4.0/doc/.htaccess  
  inflating: mantisbt-2.4.0/doc/modern_view_issues.png  
  inflating: mantisbt-2.4.0/doc/ace-theme-license.txt  
  inflating: mantisbt-2.4.0/doc/modern_my_view.png  
  inflating: mantisbt-2.4.0/doc/CREDITS  
  inflating: mantisbt-2.4.0/manage_proj_create.php  

Provide the owner permission and read write execution permission for Apache root Directory by executing the following command. Also move the file to the Apache directory.

root@linuxhelp:~# chown -R www-data:www-data /var/www/html/
root@linuxhelp:~# chmod -R 777 /var/www/html/
root@linuxhelp:/var/www/html# mv mantisbt-2.1.0/ /var/www/html/mantis

Open a Apache virtual configuration file named mantis.conf using vim editor. Enter the following contents into the file and save it.

root@linuxhelp:/var/www/html# vim /etc/apache2/sites-available/mantis.conf

< VirtualHost *:80> 
DocumentRoot " /var/www/html/mantis" 
ServerName 192.168.7.218
ErrorLog " /var/log/apache2/mantis-error_log" 
CustomLog " /var/log/apache2/mantis-access_log"  combined
< Directory " /var/www/html/mantis/" > 
DirectoryIndex index.php index.html
Options FollowSymLinks
AllowOverride All
Require all granted
< /Directory> 
< /VirtualHost> 

Now restart your Apache service.

root@linuxhelp:/var/www/html# systemctl restart apache2

Switch over to your browser and provide the URL as localhost/mantis. It will lead to the installation page of mantis. This page contains a list of pre-installation checks and installation options to be seen before starting the installation.
pre-installation

Enter the details to create a database for Mantis application.
installation options

The requirements for the database is shown and the installation of Mantis is in progress.
database configuration

The installation is complete. The login page appears on the screen and enter the default admin credentials.
login
password

The user can now login to mantis but should change the default password for security purposes.
change password

The dashboard of Mantis is shown below.
dashboard

The installation procedure of Mantis application on Ubuntu 17.04 is done without any glitches.

Tags:
caden
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

Purpose of using the Mantis Bug tracker?

A

Mantis Bug Tracker is very flexible so you can customize the issue fields, notifications, and workflow.

Q

Does MantisBT provide an XML-RPC interface?

A

No, but Mantis Bug tracker provides a SOAP web service interface. See above reference to MantisConnect project.

Q

Is there a MantisBT version for Smart Phones / PDAs?

A

Yes, checkout MantisWAP. MantisWAP provides a very lightweight interface for MantisBT access through a smartphone or PDA. It is optimized for speed and minimization of consumed bandwidth.

Q

How to does MantisBT integrate with Geeklog?

A

Please refer the link as follow "Does MantisBT integrate with Geeklog?"

Q

What is Mantis bug tracker?

A

Mantis is a free and popular open source bug tracking system. It is written in PHP and supports all types of the database server. It provides a professional dashboard to manage bugs assigned to the user. It supports powerful access control which provides per project base user access. It is very flexible so you can customize the issue fields, notifications, and workflow. Before installing the Mantis bug tracker, check whether the system contains a LAMP environment.

Related Tutorials in How to install Mantis bug tracker on Ubuntu 17.04

Related Tutorials in How to install Mantis bug tracker on Ubuntu 17.04

How to install Meld tool in Ubuntu
How to install Meld tool in Ubuntu
Feb 25, 2017
How to install Dconf-Editor on Ubuntu 18.04
How to install Dconf-Editor on Ubuntu 18.04
Jul 14, 2018
How to install and update OpenSSL on Ubuntu 16.04
How to install and update OpenSSL on Ubuntu 16.04
Mar 9, 2017
How to install GLib 2.0 on Ubuntu 17.04
How to install GLib 2.0 on Ubuntu 17.04
May 22, 2017
How to Install Android Emulator on Ubuntu 20.4.1
How to Install Android Emulator on Ubuntu 20.4.1
Jul 13, 2021
How To Install AnyDesk on Ubuntu 16.04
How To Install AnyDesk on Ubuntu 16.04
Apr 4, 2018
How to install Genymotion 2.12.1 on Ubuntu 18.04
How to install Genymotion 2.12.1 on Ubuntu 18.04
Jul 9, 2018
How to install Timeshift 18.4 on Ubuntu 18.04
How to install Timeshift 18.4 on Ubuntu 18.04
Jul 6, 2018

Related Forums in How to install Mantis bug tracker on Ubuntu 17.04

Related Forums in How to install Mantis bug tracker on Ubuntu 17.04

Ubuntu
matthew class=
Failed to enable unit: Refusing to operate on linked unit file sshd.service
Apr 15, 2019
Ubuntu
mason class=
Passwd: You may not view or modify password information for root On Ubuntu 19.04
May 27, 2019
Ubuntu
isaac class=
/etc/apt/sources.list Permission denied
May 18, 2017
Ubuntu
yousuf class=
lsb_release command not working : Debian
Jan 18, 2018
ifconfig command
jackbrookes class=
what is the location of the ifconfig program on your machine?
Jan 4, 2018
Ubuntu
mason class=
"E: Package 'php-mcrypt' has no installation candidate" error on Ubuntu 20.4.1
Mar 15, 2021
NFS
luke class=
clnt_create: RPC: Program not registered
Apr 25, 2017
Apache
isaac class=
How to disable apache welcome page on Ubuntu
Dec 15, 2018

Related News in How to install Mantis bug tracker on Ubuntu 17.04

Related News in How to install Mantis bug tracker on Ubuntu 17.04

How To Install Mixxx on Ubuntu 16.04
How To Install Mixxx on Ubuntu 16.04
Oct 11, 2017
Ubuntu 17.04 released with greater expectations
Ubuntu 17.04 released with greater expectations
Apr 15, 2017
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Mar 1, 2017
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Sep 2, 2017
Ubuntu Unity is no more: One Linux dream has been axed
Ubuntu Unity is no more: One Linux dream has been axed
Apr 7, 2017
What’s next for Ubuntu Linux Desktop?
What’s next for Ubuntu Linux Desktop?
Apr 11, 2017
Say Hi to Ubuntu's new mascot
Say Hi to Ubuntu's new mascot
Mar 22, 2019
KDE Connect App was removed from Google Play Store and brought back in 24 hours
KDE Connect App was removed from Google Play Store and brought back in 24 hours
Mar 22, 2019
Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help David Lopez Guillen ?
Ayuda urgente instale SSL para servidor Opensuse y ahora no funciona tengo servicio web

hola segui este tutorial para tener un certificado ssl y ahora no se ve mi app en la red, espero alguien pueda ayudarme, tengo M9oodle en3.5 en un servidor open suse y ahora no funciona por favor ayuda.

https://www.linuxhelp.com/how-to-create-ssl-certificate-in-opensuse

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.