xubuntu18-04-1-desktop:搭建部署mantisBT

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_34889607/article/details/81937764
1. # 先更新下软件包
	$ sudo apt update -y
2. # mantisbt官网下载最新版的mantisbt
	$ sudo apt install -y wget
	$ cd /opt
	$ wget https://sourceforge.net/projects/mantisbt/files/mantis-stable/2.16.0/mantisbt-2.16.0.tar.gz/download
	$ sudo tar xf mantisbt-2.16.0.tar.gz
	$ sudo mv mantisbt-2.16.0 /var/www/html/mantisbt
	$ sudo chmod -R 755 /var/www/html/mantisbt
3. # 下载apache2
	$ sudo apt install -y apache2
4. # 下载php7.2
	$ sudo apt install -y php7.2
5. # 解决apache\php的依赖关系
	$ sudo apt install -y libapache2-mod-php7.2
6. # 下载mysql
	$ sudo apt install -y mysql-server
7. # 解决mysql\php的关系
	$ sudo apt install -y php7.2-mysql php7.2-xml php7.2-mbstring
8. # 启动服务
	$ sudo /etc/init.d/apache2 start
	$ sudo /etc/init.d/mysql start
9. # 测试
	$ cat /var/www/html/index.html
        it works!
	$ cat /var/www/html/info.php
        <?php
            phpinfo();
        ?>
	http://ip
	http://ip/info.php
10. # 创建库
	$ sudo mysql
	> create database mantis default character set utf8 collate utf8_general_ci;
	> grant all privileges on mantis.* to 'mantis'@'%' identified by 'mantis';
	> grant all privileges on mantis.* to 'mantis'@'localhost' identified by 'mantis';
	> grant all privileges on mantis.* to 'root'@'%' identified by 'root' with grant option;
	> grant all privileges on mantis.* to 'root'@'localhost' identified by 'root' with grant option;
	> flush privileges;
11. # 配置mantisbt
	http://ip/mantisbt/admin/install.php

参考文档:https://blog.csdn.net/u014332275/article/details/78356888

猜你喜欢

转载自blog.csdn.net/qq_34889607/article/details/81937764
今日推荐