禅道与Jira的对比

	禅道最大的特色是创造性的将产品、项目、测试这三者的概念明确分开,互相配合,又互相制约。通过需求、任务、bug来进行交相互动,最终通过项目拿到合格的产品。
Jira设计以项目为主线,产品、测试结合管理,通过issues控制管理。因此它的核心诉求还是围绕issue展开的,以issue驱动管理、分工、以及团队协作,进而实现项目的规划、建设,终完成产品开发。
# 禅道功能
1)产品管理:产品、需求、计划、发布、路线图等功能。
2)项目管理:项目、任务、团队、build、燃尽图等功能。
3)质量管理:bug、测试用例、测试任务、测试结果等功能。
4)文档管理:产品文档库、项目文档库、自定义文档库等功能。
5)事务管理:todo管理,我的任务、我的Bug、我的需求、我的项目等个人事务管理功能。
6)组织管理:部门、用户、分组、权限等功能。
7)统计功能:丰富的统计表。
8)搜索功能:通过搜索找到相应的数据。 # Jira功能
1)问题追踪和管理(问题类型包括New Feature-新功能、Bug-缺陷、Task-任务、 Improvement-改进 四种);
2)问题跟进情况的分析报告;
3)项目类别管理功能;
4)组件/模块负责人功能;
5)项目email地址功能;
6)无限制的工作流。
# 禅道的优点:
1)禅道开源免费,从下载到使用不需任何费用。开源的软件更能够根据企业自身需求在源码的基础上进行修改,让国内外众多企业节省项目管理成本。
2)禅道的功能非常完备,可扩展性,且代码开放可做二次开发。
3)禅道价格实惠,售后服务方式选择多且有官方技术服务的保障。 # 禅道的缺点:
1)禅道的界面设计稍稍逊色,不够简洁,颜色使用也比较单一,不够丰富。
2)虽然禅道有新手入门操作演示,但部分新人上手还是会存在一些问题。 # Jira的优点:
1)Jira的界面效果非常不错。安全性、可扩展性方面也不错。 Jira的使用范围广,所以拥有众多开发者提供的扩展插件以供不同选择。
2)单独提一下Jira的工作流定制,这块功能实用性特别高,可定制性也很好。
3)Jira针对issue驱动的项目管理非常有效,也基于多年来的插件积累,可以展现非常强大的交互、统计视图,纯粹项目管理使用Jira的确是个不错选择。 # Jira的缺点:
1)Jira从使用上来说还是不大符合国人的使用逻辑。
2)Jira虽然有中文版本,但是中文版本在使用的过程中,部分页面还是会有很多英文,不能做到全中文界面。
3)Jira对于国内用户提供的售后服务稍显弱一些,存在时间和沟通上的一些障碍。

环境准备

IP HOSTNAME SYSTEM
192.168.131.129 zentao CentOS 7.6
# 后面有编写好的脚本,自己注意修改mariadb的root密码
[root@localhost ~]# cat /etc/redhat-release
CentOS Linux release 7.6.1810 (Core)
[root@localhost ~]# sestatus
SELinux status: disabled
[root@localhost ~]# systemctl status firewalld
● firewalld.service - firewalld - dynamic firewall daemon
Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)
Active: inactive (dead)
Docs: man:firewalld(1)
[root@localhost ~]# hostnamectl --static set-hostname zentao

安装httpd

[root@zentao ~]# yum -y install httpd
[root@zentao ~]# rpm -qa | grep httpd
httpd-2.4.6-93.el7.centos.x86_64
httpd-tools-2.4.6-93.el7.centos.x86_64
[root@zentao ~]# systemctl enable httpd --now

安装php 7.2

# 下载php 7.2 yum源
[root@zentao ~]# rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-release.rpm
[root@zentao ~]# rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
# yum 安装 php 7.2 所需组件
[root@zentao ~]# yum -y install php72w php72w-pdo php72w-mysql php72w-mbstring php72w-ldap php72w-gd php72w-json php72w-xml
[root@zentao ~]# vim /var/www/html/index.php
<?php
phpinfo();
?>
[root@zentao ~]# systemctl restart httpd # 重启httpd服务后,php页面才可以正常访问
# 浏览器访问 http://192.168.131.129/index.php 查看到php信息页面即可

安装mariadb

[root@zentao ~]# yum -y install mariadb mariadb-server
[root@zentao ~]# rpm -qa | grep mariadb
mariadb-5.5.65-1.el7.x86_64
mariadb-server-5.5.65-1.el7.x86_64
mariadb-libs-5.5.65-1.el7.x86_64
[root@zentao ~]# systemctl enable mariadb.service --now

数据库初始化

[root@zentao ~]# mysql_secure_installation

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY! In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here. Enter current password for root (enter for none): # 初次安装的,直接回车即可
OK, successfully used password, moving on... Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation. Set root password? [Y/n] y # 是否设置mariadb的root用户的密码
New password:
Re-enter new password: # 确认密码
Password updated successfully!
Reloading privilege tables..
... Success! By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment. Remove anonymous users? [Y/n] y # 是否删除匿名用户
... Success! Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network. Disallow root login remotely? [Y/n] n # 是否禁止root远程登录
... skipping. By default, MariaDB comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment. Remove test database and access to it? [Y/n] y # 是否删除test数据库
- Dropping test database...
... Success!
- Removing privileges on test database...
... Success! Reloading the privilege tables will ensure that all changes made so far
will take effect immediately. Reload privilege tables now? [Y/n] y # 是否立即重新加载权限表
... Success! Cleaning up... All done! If you've completed all of the above steps, your MariaDB
installation should now be secure. Thanks for using MariaDB!

安装禅道

[root@zentao ~]# wget https://www.zentao.net/dl/ZenTaoPMS.12.4.1.zip
[root@zentao ~]# yum -y install unzip
[root@zentao ~]# unzip ZenTaoPMS.12.4.1.zip -d /var/www/html/
[root@zentao ~]# cp /etc/httpd/conf/httpd.conf{,.bak} # 美好的一切,从备份配置文件开始
[root@zentao ~]# vim /etc/httpd/conf/httpd.conf
119 DocumentRoot "/var/www/html/zentaopms/www" `修改路径
120
121 #
122 # Relax access to content within /var/www.
123 #
124 <Directory "/var/www">
125 AllowOverride None
126 # Allow open access:
127 Require all granted
128 </Directory>
129
130 # Further relax access to the default document root:
131 <Directory "/var/www/html/zentaopms/www"> `修改路径
132 #
133 # Possible values for the Options directive are "None", "All",
134 # or any combination of:
135 # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
136 #
137 # Note that "MultiViews" must be named *explicitly* --- "Options All"
138 # doesn't give it to you.
139 #
140 # The Options directive is both complicated and important. Please see
141 # http://httpd.apache.org/docs/2.4/mod/core.html#options
142 # for more information.
143 #
144 Options Indexes FollowSymLinks
145
146 #
147 # AllowOverride controls what directives may be placed in .htaccess files.
148 # It can be "All", "None", or any combination of the keywords:
149 # Options FileInfo AuthConfig Limit
150 #
151 AllowOverride All `None改成All
152
153 #
154 # Controls who can get stuff from this server.
155 #
156 Require all granted
157 </Directory>
[root@zentao ~]# systemctl restart httpd
# 浏览器访问 http://http://192.168.131.129/ 开始安装禅道

脚本部署

#!/bin/bash
# From Bandian
# This project is used to deploy Zentao
# Date: 2020-08-14
# Httpd version: 2.4.6
# PHP version: 7.2
# Mariadb version: 5.5.65
# Zentao version: 12.4.1 # 检查网络
checkNetwork() {
ping -c1 www.baidu.com > /dev/null 2>&1
if [ $? -ne 0 ]
then
echo "Check your network !"
exit
else
echo "Waiting for check system "
fi
}
checkNetwork # 关闭selinux和防火墙
checkSystem() {
hostnamectl --static set-hostname zentao
systemctl disable firewalld --now
setenforce 0
# if [ $? -ne 0 ]
# then
# echo "Check your firewalld and selinux !"
# exit 1
# else
# echo "Waiting for install httpd"
# fi
}
checkSystem # 安装httpd
installHttpd() {
yum -y install httpd > /dev/null 2>&1
if [ $? -eq 0 ]
then
echo "Httpd install successful"
else
echo "Httpd install failed !"
fi
systemctl enable httpd --now
if [ $? -eq 0 ]
then
echo "Httpd start succes"
echo "Waiting fo install php"
else
echo "Httpd start failed !"
exit 2
fi
}
installHttpd # 安装php
installPhp() {
rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-release.rpm
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
yum -y install php72w php72w-pdo php72w-mysql php72w-mbstring php72w-ldap php72w-gd php72w-json php72w-xml /dev/null 2>&1
if [ $? -eq 0 ]
then
echo "PHP install successful"
echo "Waiting for install mariadb"
else
echo "PHP install failed !"
exit 3
fi
}
installPhp # 安装mariadb
installMariadb() {
yum -y install mariadb mariadb-server /dev/null 2>&1
if [ $? -eq 0 ]
then
echo "Mariadb install successful"
else
echo "Mariadb install failed !"
exit 4
fi
systemctl enable mariadb.service --now
if [ $? -eq 0 ]
then
echo "Mariadb start success"
echo "Waiting init mariadb"
else
echo "Mariadb start failed !"
exit 4
fi
}
installMariadb # 初始化mariadb
initMariadb() {
yum -y install expect > /dev/null 2>&1
expect -c "
spawn mysql_secure_installation
expect {
\"*enter for none*\" {send \"\r\"; exp_continue}
\"*Y/n*\" {send \"y\r\"; exp_continue}
\"*password*\" {send \"123.com\r\"; exp_continue}
\"*password*\" {send \"123.com\r\"; exp_continue}
\"*Y/n*\" {send \"y\r\"; exp_continue}
\"*Y/n*\" {send \"n\r\"; exp_continue}
\"*Y/n*\" {send \"y\r\"; exp_continue}
\"*Y/n*\" {send \"y\r\";}
}"
if [ $? -eq 0 ]
then
echo "Mariadb init successful"
echo "Waiting install zentao"
else
echo "Mariadb init failed"
exit 5
fi
}
initMariadb # 安装禅道
installZentao() {
wget https://www.zentao.net/dl/ZenTaoPMS.12.4.1.zip
yum -y install unzip
if [ $? -eq 0 ]
then
echo "Download zentao success"
else
echo "Download zentao failed !"
exit 6
fi
unzip ZenTaoPMS.12.4.1.zip -d /var/www/html/
cp /etc/httpd/conf/httpd.conf{,.bak}
sed -i '119{s/var.*/var\/www\/html\/zentaopms\/www"/}' /etc/httpd/conf/httpd.conf
sed -i '131{s/var.*/var\/www\/html\/zentaopms\/www">/}' /etc/httpd/conf/httpd.conf
sed -i '151{s/None/All/}' /etc/httpd/conf/httpd.conf
systemctl restart httpd
if [ $? -eq 0 ]
then
echo "Httpd restarted success"
else
echo "Httpd restart failed !"
exit 7
fi
}
installZentao

LAMP环境下部署项目管理软件--禅道的更多相关文章

  1. Linux环境下部署开源版“禅道”方法

    1.开源版安装包下载(Linux系统版本查看命令 uname -a) 32位 [root@iZbp~]# wget http://dl.cnezsoft.com/zentao/9.0.1/ZenTao ...

  2. 【简书】在阿里云自带的CentOS + LAMP环境下部署一个Laravel项目

    在阿里云自带的CentOS + LAMP环境下部署一个Laravel项目 作者 DonnieZero 关注 2017.07.29 22:02* 字数 2218 阅读 5556评论 3喜欢 1赞赏 1 ...

  3. Linux下部署开源版“禅道”项目管理系统《转载》

    Linux下部署开源版“禅道”项目管理系统 https://www.cnblogs.com/xxsl/p/6525378.html

  4. Linux下部署开源版“禅道”项目管理系统

    1.开源版安装包下载 [root@iZbp ~]# wget http://dl.cnezsoft.com/zentao/9.0.1/ZenTaoPMS.9.0.1.zbox_64.tar.gz 2. ...

  5. Django Linux环境下部署CentOS7+Python3+Django+uWSGI+Nginx(含Nginx返回400问题处理、防火墙管理)

    本文将介绍如何在Linux系统上部署Django web项目,本次部署基于下面的架构: CentOS7+ Python3.5 + Django1.11 + uWSGI + Nginx 亲测可行!!按照 ...

  6. win7 IIS7环境下部署PHP 7.0

    最近在本机电脑win7 II7环境下部署PHP 7.0遇到一些问题,将之记录下来 简要步骤如下: 1.到php官网下载php,由于是IIS环境要下载非线程安全的版本,我下载的是7.0.13 2.解压到 ...

  7. Vmware ESX5i 环境下部署Windows Storage Server 2008 R2

    ESX5i 环境下部署Windows Storage Server 2008 R2       Windows Storage Server 2008 这款产品微软早已发布,WSS2008是基于Win ...

  8. 有了SSL证书,如何在IIS环境下部署https?【转载】

    昨天各位小伙伴都很开心的领取了自己的SSL证书,但是大部分小伙伴却不知道如何部署,也许是因为第一次接触SSL这种高端的东西吧,不过个人觉得就是懒懒懒...本来小编也挺懒的,但是答应了各位小伙伴的,那么 ...

  9. Django Windows环境下部署

    环境准备 本文将介绍如何在Windows系统上部署Django web项目,本次部署基于下面的架构: Windows10 64位+Python3.6+Django1.11+Apache2.4+mod_ ...

随机推荐

  1. 10个JS技巧

    1.过滤唯一值 Set 对象是es6新引入的,配合扩展运算符[...]一起使用,我们可以用它来过滤数组的唯一值. const array = [1, 1, 2, 3, 5, 5, 1] const u ...

  2. JAVA之垃圾收集器

    概述 垃 圾收集 Garbage Collection 通常被称为"GC",它诞生于1960年 MIT 的 Lisp 语言,经过半个多世纪,目前已经十分成熟了. jvm 中,程序计 ...

  3. 贝塞尔曲线(面)二三维可视化(Three+d3)

    贝塞尔曲线(面)二三维可视化(Three+d3) 在学完 games101 几何后开始实践,可视化贝塞尔曲线 我想实现三维的贝塞尔曲线,用 threejs,但是 threejs 控制太麻烦了,因此,我 ...

  4. 扒一扒@Retryable注解,很优雅,有点意思!

    你好呀,我是歪歪. 前几天我 Review 代码的时候发现项目里面有一坨逻辑写的非常的不好,一眼望去简直就是丑陋之极. 我都不知道为什么会有这样的代码存在项目里面,于是我看了一眼提交记录准备叫对应的同 ...

  5. [STM32F10x] 使用printf函数进行串口调试问题

    硬件:STM32F103C8T6 平台:Keil ARM-MDk V5.11 利用printf函数通过串口(USART)进行调试时遇到的一个问题: printf("Hello, Mini-M ...

  6. 使用3D Tiles Overview学习3D Tiles

    Cesium中文网:http://cesiumcn.org/ | 国内快速访问:http://cesium.coinidea.com/ 3D Tiles的创建是为了在web上传输大量的3D数据集.作为 ...

  7. 集合框架-Vector集合

    1 package cn.itcast.p1.vector.demo; 2 3 import java.util.Enumeration; 4 import java.util.Iterator; 5 ...

  8. 一个简单的javaweb项目模板

    Controller包:表现层(视图)层.用来显示数据和接收用户数据 Service包:业务逻辑层,用来处理页面.先写接口,后写实现类 Dao包:持久层(数据访问层).用来操作数据库 其中Dao包处于 ...

  9. Linux inode节点使用率过大处理办法

    当发现某个分区下的inode使用率过大时,需要找到该分区下的某些目录里有哪些文件可以清理. 查找某个目录下一个月或两个月之前的文件,然后删除# find . -type f -mtime +30 |w ...

  10. 关于基于python2.7的unity自动化测试框架GAutomator测试环境的搭建(源码网盘下载地址:https://pan.baidu.com/s/1c2TXwtU)

    关于基于python 2.7的unity自动化测试框架GAutomator测试环境的搭建 百度云盘链接(思维图学习资料):https://pan.baidu.com/s/1dFWExMD 准备工作(具 ...