文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

mantis 2.5.0安装和配置

2024-04-02 19:55

关注

        缺陷管理平台Mantis,也做MantisBT,全称Mantis Bug Tracker。Mantis是一个基于PHP技术的轻量级的开源缺陷跟踪系统

mantis 2.5.0 

下载地址:https://jaist.dl.sourceforge.net/project/mantisbt/mantis-stable/2.5.0/mantisbt-2.5.0.tar.gz

一、php安装

yum install -y libxml2-devel openssl openssl-devel bzip2 bzip2-devel libpng libpng-devel freetype freetype-devel   libmcrypt-devel curl-devel readline-devel

1、下载php源码包

http://www.php.net/downloads.php

2 、安装php

tar -xvf php-5.5.13.tar.bz2

cd php-5.5.13

 ./configure --prefix=/usr/local/php --with-config-file-path=/etc --enable-inline-optimization --disable-debug --disable-rpath --enable-shared --enable-opcache --enable-fpm --with-fpm-user=www --with-fpm-group=www --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-gettext --enable-mbstring --with-iconv --with-mcrypt --with-mhash --with-openssl --enable-bcmath --enable-soap --with-libxml-dir --enable-pcntl --enable-shmop --enable-sysvmsg --enable-sysvsem --enable-sysvshm --enable-sockets --with-curl --with-zlib --enable-zip --with-bz2 --with-readline --without-sqlite3 --without-pdo-sqlite --with-pear

make 

make install

添加 PHP 命令到环境变量

vim /etc/profile

在末尾加入

PATH=$PATH:/usr/local/php/bin

export PATH

要使改动立即生效执行

. /etc/profile 或 source /etc/profile

查看环境变量

echo $PATH

查看版本 php -versoin

PHP 5.5.13 (cli) (built: Jan 19 2017 22:50:24) 

Copyright (c) 1997-2016 The PHP Group

Zend Engine v2.6.0, Copyright (c) 1998-2016 Zend Technologies

二、数据库安装

安装mysql、建立数据库

yum install -y mysql-server mysql-devel

    mysqladmin -uroot password 123456

mysql>create database mantis character set utf8;

mysql>grant all privileges on mantis.* to mantis@localhost identified by '654321';

mysql> flush privileges;

三、mantis配置

unzip mantisbt-2.5.0.zip

cd mantisbt-2.5.0

 pwd

/data/soft/mantis/mantisbt-2.5.0

四、nginx设置

vim mantis.conf

server {

        listen     7878;

       location ~*\.php$ {

          #root  "/data/soft/mantisbt-2.5.0";

          #root  "/data/soft/mantisbt";

          root  "/data/soft/mantis/mantisbt-2.5.0";

 index index.html index.php;

   fastcgi_pass 127.0.0.1:9000;

 fastcgi_index index.php;

          fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

 includefastcgi_params;

         }



location ~ ^/(p_w_picpaths|javascript|js|css|flash|media|static|fonts|scripts)/  {

           root       "/data/soft/mantis/mantisbt-2.5.0"; 

           #access_log  off;

           expires     30d;

         }



        }

五、设置mantis

   http://ip:7878/admin/install.php

填写数据库用户名和密码

所有检查为good,会要求你把相关信息写入config/config_inc.php内如图:

mantis 2.5.0安装和配置

mantis的注册及修改需要通过邮件,所以需要配置邮件

mantis 2.5.0安装和配置

这么设置就可以发信了,

直接访问:http://ip:7878/my_view_page.php使用

mantis 2.5.0安装和配置

六,优化

用几天发现mantis发送邮件特慢,应该是php发送邮件的问题,需要进行优化下

第一,清理下堆积的队列,正常情况发送后会自动删除,直接清空表mantis_email_mantis里面数据

mysql> select *  from mantis_email_mantis;

Empty set (0.00 sec)

第二,修改下配置文件

vim config/config_inc.php

修改$g_email_send_using_cronjob = ON;

第三,需要加个crontab加速发邮件的速度

crontab -e

*/1 * * * * /usr/bin/php /data/soft/mantis/mantisbt-2.5.0/scripts/send_emails.php > /root/logs/mantis_sendmail.log 2>&1

第四,没了

试下,应该可以起飞了

注:第一次写博客,请多关照

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-数据库
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯