禅道安装

禅道安装:
1、rpm安装PHP7相应的yum源
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
2、yum安装PHP7
yum install php
3、安装其他插件

yum install php-pdo php-pdo_mysql php-json php-filter php-openssl php-mbstring php-zlib php-curl php-gd php-iconv

wget http://dl.cnezsoft.com/zentao/9.1.2/ZenTaoPMS.9.1.2.zip
拷贝至/usr/loca/zentao/

server {
        listen 8866;
        index  index.php index.html;
        root  /usr/local/zentaopms/www;

        location / {
            root   /usr/local/zentaopms/www;
            index  index.php index.html index.htm;
                  }
        location ~ \.php$ {
        root           /usr/local/zentaopms/www;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
            }
}
 

你可能感兴趣的:(运维开发工具)