1. 程式人生 > >安裝禪道

安裝禪道

fire log 文件描述 all 生命周期 efi 項目管理軟件 bug管理 mod

1.禪道介紹

禪道 項目管理軟件 是國產的開源項目管理軟件,專註研發項目管理,內置需求管理、任務管理、bug管理、缺陷管理、用例管理、計劃發布等功能,實現了軟件的完整生命周期管理。

禪道屬於開源項目,有收費版,本次以開源版9.1.2進行搭建

禪道官網:http://www.zentao.net/

提示:本地環境我們沒有安裝mysql,安裝禪道環境需要LNMP或者LAMP,本地以LAP進行演示 
php版本5.5.30 
nginx版本1.10.3
  • 1.1.環境準備

[root@chandao ~]# cat /etc/redhat-release 
CentOS release 6.5 (Final)
[root@chandao ~]# /etc/init.d/ip
ip6tables  iptables   
[root@chandao ~]# /etc/init.d/iptables stop
iptables: Setting chains to policy ACCEPT: filter          [  OK  ]
iptables: Flushing firewall rules:                         [  OK  ]
iptables: Unloading modules:                               [  OK  ]
[root@chandao ~]# setenforce 0
#調整文件描述符
[root@chandao ~]# echo ‘* - nofile 100000 ‘ >>/etc/security/limits.conf

1.2 安裝nginx  

[root@chandao src]# wget http://nginx.org/download/nginx-1.10.3.tar.gz
[root@chandao src]# tar xf nginx-1.10.3.tar.gz 
[root@chandao src]# useradd -s /sbin/nologin www -M 
[root@chandao src]# yum install -y gcc glibc gcc-c++ prce-devel openssl-devel pcre-devel
[root@chandao src]# cd nginx-1.10.3
[root@chandao 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
[root@chandao nginx-1.10.3]# make && make install 
[root@chandao nginx-1.10.3]# ln -s /usr/local/nginx-1.10.3 /usr/local/nginx

1.3 安裝php

[root@moban-6 local]# yum install zlib-devel libxml2-devel libjpeg-devel libjpeg-turbo-devel libiconv-devel -y
[root@moban-6 local]# yum install freetype-devel libpng-devel gd-devel libcurl-devel libxslt-devel libxslt-devel -y

  

安裝禪道