![]() |
![]() |
![]() |
![]() |
![]() |
VPS / VDS hosting >  Installing Mantis on VPS
Installation of Mantis on a virtual server is performed using a package that includes all the necessary services. Installation is carried out in the ssh linux console, Centos 7 is used as a server. The latest version of the package can be found on the developer's website Bitnami.
Before starting the installation, you need to make sure that there are no pre-installed services on the server, for example, to remove apache, use the command:
# yum remove httpd
We also recommend to immediately configure the firewall service:
# iptables -A INPUT -p tcp -m tcp --dport 80 -j ACCEPT
# iptables -A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT
# service iptables save
# service iptables restart
Download and install the package:
# wget http://iso.ripnet.ru/vm-apps/bitnami-mantis-2.24.4-1-linux-x64-installer.run
# chmod +x bitnami-mantis-2.24.4-1-linux-x64-installer.run
# ./bitnami-mantis-2.24.4-1-linux-x64-installer.run
phpMyAdmin — an open source web application written in PHP and providing a web interface for administering the MySQL database management system. PhpMyAdmin allows you to administer the MySQL server through a browser and not only, run SQL commands and view the contents of tables and databases
Select by default (Y)
Is the selection above correct? [Y/n]: Y
The choice was made correctly
Select a folder [/opt/mantis-2.24.4-1]:
Press Enter if you want to leave the specified path as default
Your real name [User Name]: admin
Enter a username, for example admin
Email Address [user@example.com]: mail@domain.tld
Enter your email address
Login [user]:
Login, for example user
Password : ******
Administrator password
Do you want to continue? [Y/n]: Y
Proceed with installation.
Launch Mantis application. [Y/n]: Y
Launch the application.
Now you can open a link like http://server_ip/ in a browser and check the application.
In order to transfer the application to the root (without the mantis folder), use the command
# installdir/apps/APPNAME/bnconfig --appurl /
In this case, the command will look like this:
# /opt/mantis-2.24.4-1/apps/mantis/bnconfig --appurl /
To turn off the auxiliary menu, use the command
# installdir/apps/APPNAME/bnconfig --disable_banner 1
In this case, the command will look like this:
# /opt/mantis-2.24.4-1/apps/mantis/bnconfig --disable_banner 1
Mantis Installation Complete.