1.禅道介绍
禅道 项目管理软件 是国产的开源项目管理软件,专注研发项目管理,内置需求管理、任务管理、bug管理、缺陷管理、用例管理、计划发布等功能,实现了软件的完整生命周期管理。 禅道属于开源项目,有收费版,本次以开源版9.1.2进行搭建 禅道官网:http://www.zentao.net/ 提示:本地环境我们没有安装mysql,安装禅道环境需要LNMP或者LAMP,本地以LAP进行演示 php版本5.5.30 nginx版本1.10.3
-
1.1.环境准备
[[email protected] ~]# cat /etc/redhat-release CentOS release 6.5 (Final) [[email protected] ~]# /etc/init.d/ip ip6tables iptables [[email protected] ~]# /etc/init.d/iptables stop iptables: Setting chains to policy ACCEPT: filter [ OK ] iptables: Flushing firewall rules: [ OK ] iptables: Unloading modules: [ OK ] [[email protected] ~]# setenforce 0
#调整文件描述符
[[email protected] ~]# echo ‘* - nofile 100000 ‘ >>/etc/security/limits.conf
1.2 安装nginx
[[email protected] src]# wget http://nginx.org/download/nginx-1.10.3.tar.gz [[email protected] src]# tar xf nginx-1.10.3.tar.gz [[email protected] src]# useradd -s /sbin/nologin www -M [[email protected] src]# yum install -y gcc glibc gcc-c++ prce-devel openssl-devel pcre-devel [[email protected] src]# cd nginx-1.10.3 [[email protected] nginx-1.10.3]# ./configure --prefix=/usr/local/nginx-1.10.3 --user=www --group=www --with-http_ssl_module --with-http_stub_status_module [[email protected] nginx-1.10.3]# make && make install [[email protected] nginx-1.10.3]# ln -s /usr/local/nginx-1.10.3 /usr/local/nginx
1.3 安装php
[[email protected] local]# yum install zlib-devel libxml2-devel libjpeg-devel libjpeg-turbo-devel libiconv-devel -y [[email protected] local]# yum install freetype-devel libpng-devel gd-devel libcurl-devel libxslt-devel libxslt-devel -y