北京SEO

linux下bugfree 安装配置步骤

2019/10/10/17:45:42  阅读:1677  来源:谷歌SEO算法  标签: SEO

BugFree是借鉴微软的研发流程和Bug管理理念,使用PHP+MySQL独立写出的一个Bug管理 系统,简单实用、免费并且开放源代码(遵循GNU GPL).

一,什么是bugfree

BugFree是借鉴微软的研发流程和Bug管理理念,使用PHP+MySQL独立写出的一个Bug管理 系统,简单实用、免费并且开放源代码(遵循GNU GPL),命名BugFree 有两层意思:一是希望软件中的缺陷越来越少直到没有,Free嘛,二是表示它是免费且开放源代码的,大家可以自由使用传播.

二,安装配置php nginx mysql

1,安装

# yum install php-curl php-mbstring php-gd php-mysql php-pdo php-mcrypt redis php-redis nginx mysql mysql-server php-fpm

2,启动mysql和redis

  1. #/etc/init.d/mysqldstart
  2. #/etc/init.d/redisstart

3,创建数据库

  1. #mysql-uroot
  2. mysql>createdatabasebugfree;
  3. mysql>usebugfree;
  4. mysql>setnamesutf8;

4,修改php-fpm的配置文件

  1. #vim/etc/php-fpm.d/www.conf
  2. ;php_value[session.save_handler]=files
  3. ;php_value[session.save_path]=/var/lib/php/session
  4. php_value[session.save_handler]=redis
  5. php_value[session.save_path]="tcp://127.0.0.1:6379"
  6. #/etc/init.d/php-fpmstart//启动php-fpm

5,bugfree解压和目录设置

  1. #unzipbugfree.zip
  2. #mvbugfree3.0.1/var/www/html/bugfree
  3. #chownapache.apache-R/var/www/html/bugfree//apache是php-fpm的启动用户
  4. #mkdir-p/var/www/html/BugFile//创建目录
  5. #chownapache.apache-R/var/www/html/BugFile

6,nginx配置

  1. [root@networkconf.d]#cat/etc/nginx/conf.d/bugfree.conf
  2. server{
  3. listen80;
  4. server_name192.168.10.202;
  5. #root/home/tank/workspace;
  6. root/var/www/html/bugfree;
  7. location/{
  8. indexindex.htmlindex.htmindex.php;
  9. if(!-e$request_filename){
  10. rewrite^/(.*)/index.phplast;
  11. }
  12. #autoindexon;
  13. }
  14. location~\.php${
  15. fastcgi_pass127.0.0.1:9000;
  16. fastcgi_indexindex.php;
  17. fastcgi_paramSCRIPT_FILENAME$document_root$fastcgi_script_name;//phpfensi.com
  18. includefastcgi_params;
  19. }
  20. }
  21. [root@localhostconf.d]#/etc/init.d/nginxstart//启动nginx

到这儿就安装配置好了,url访问http://192.168.10.202,就可以进行初始化设置了.

广告内容

linux下bugfree 安装配置步骤 linux下bugfree 安装配置步骤 linux下bugfree 安装配置步骤

相关阅读

热门评论

小潘seo 小潘seo

重庆小潘seo博客和你一起学习SEO知识,共同分享SEO优化~

总篇数165

精选文章

RMAN中catalog和nocatalog区别介绍 小技巧:为Linux下的文件分配多个权限 zimbra8.5.1安装第三方签名ssl证书的步骤 解决mysql不能远程连接数据库方法 windows服务器mysql增量备份批处理数据库 mysql中slow query log慢日志查询分析 JavaScript跨域问题总结 Linux下负载均衡软件LVS配置(VS/DR)教程 mysql中权限参数说明 MYSQL(错误1053)无法正常启动

SEO最新算法