欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

LNMP禅道项目管理软件

程序员文章站 2022-07-14 08:30:21
...

LNMP
LNMP禅道项目管理软件
完整覆盖研发项目核心流程 从计划到发布,完整生命周期管理,增加测试、文档、发布管理、为开发人员提供便捷服务、能及时提bug解决问题、项目管理更加顺畅,并提高您的工作效率
禅道项目管理软件的主要功能列表:

  1. 产品管理:包括产品、需求、计划、发布、路线图等功能。
  2. 项目管理:包括项目、任务、团队、版本、燃尽图等功能。
  3. 质量管理:包括bug、测试用例、测试任务、测试结果等功能。
  4. 文档管理:包括产品文档库、项目文档库、自定义文档库等功能。
  5. 事务管理:包括todo管理,我的任务、Bug、需求、我的项目等个人事务管理功能。
  6. 组织管理:包括部门、用户、分组、权限等功能。
  7. 统计功能:丰富的统计表。
  8. 搜索功能:强大的搜索,帮助您找到相应的数据。
  9. 扩展机制,几乎可以对禅道的任何地方进行扩展。
  10. api机制,所见皆API,方便与其他系统集成。
    LNMP禅道项目管理软件

下载页面
https://www.zentao.net/download.html

下载安装包

[aaa@qq.com ~]# [aaa@qq.com ~]# wget http://sourceforge.net/projects/zentao/files/11.6.4/ZenTaoPMS.11.6.4.zip

解压至指定目录(网页根目录下面)

[aaa@qq.com ~]# unzip ZenTaoPMS.11.6.4.zip -d /usr/local/nginx/html/

在浏览器安装
IP加路径
http://10.10.100.39/zentaopms/www/install.php
LNMP禅道项目管理软件
LNMP禅道项目管理软件
创建一个存储目录

[aaa@qq.com www]# mkdir -p /usr/local/php/session
[aaa@qq.com www]# chmod o=rwx -R /usr/local/php/session

修改php配置文件

[aaa@qq.com www]# vim /usr/local/php/php.ini
; The path can be defined as:
;
     session.save_path = "/usr/local/php/session"
;
; where N is an integer.  Instead of storing all the session files in
; /path, what this will do is use subdirectories N-levels deep, and
; store the session data in those directories.  This is useful if
; your OS has problems with many files in one directory, and is
; a more efficient layout for servers that handle many sessions.
;
; NOTE 1: PHP will not create this directory structure automatically.
;         You can use the script in the ext/session dir for that purpose.
; NOTE 2: See the section on garbage collection below if you choose to
;         use subdirectories for session storage
;
; The file storage module creates files using mode 600 by default.
; You can change that by using
;
     session.save_path = "/usr/local/php/session"
;
; where MODE is the octal representation of the mode. Note that this
; does not overwrite the process's umask.
; http://php.net/session.save-path
session.save_path = "/usr/local/php/session"  #修改成新创建的目录路径

重启php

[aaa@qq.com www]# /etc/init.d/php-fpm restart
Gracefully shutting down php-fpm . done
Starting php-fpm  done

刷新页面
LNMP禅道项目管理软件
LNMP禅道项目管理软件
LNMP禅道项目管理软件
LNMP禅道项目管理软件
LNMP禅道项目管理软件
LNMP禅道项目管理软件
LNMP禅道项目管理软件

优化
可以修改nginx配置,可以直接用IP访问

[aaa@qq.com conf]# vim nginx.conf
 server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root  /usr/local/nginx/html/zentaopms/www/; 根路劲
            index index.php  index.html index.htm;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
            root           html;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  /usr/local/nginx/html/zentaopms/www$fastcgi_script_name; 根路径
            include        fastcgi_params;
        }

重启nginx