centos 禅道项目管理软件部署

一、安装php环境
#php 全家桶
yum install php-mysql php-gd libjpeg* php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-mcrypt php-bcmath php-mhash libmcrypt libmcrypt-devel php-fpm
#设置php.ini  
vim /etc/php.ini

session.save_path = "/tmp"

extension=php_pdo.dll
extension=php_pdo_mysql.dll

extension=php_mbstring.dll
mbstring.language=Chinese
mbstring.internal_encoding=UTF-8
mbstring.encoding_translation=On
mbstring.http_input=UTF-8
mbstring.http_output=UTF-8
mbstring.detect_order=UTF-8
mbstring.substitute_character=none



二、安装禅道项目管理软件
#下载源码 http://dl.cnezsoft.com/zentao/11.5.1/ZenTaoPMS.11.5.1.zip

#解压到 /data/web/ 文件夹下面 里面有一个zentaopms文件夹

44121f2caacfe24b100f0b5ff428bd63e2f.jpg

三、nginx配置

vim /etc/nginx/nginx.conf

#新增如下代码
server {
        listen       9001;
        rewrite_log on;
        server_name  localhost;
        #charset koi8-r;
        #access_log  logs/host.access.log  main;
        location / {
                root /data/web/zentaopms/www;
                index  index.html index.htm index.php;
                if (!-e $request_filename) {
                        rewrite ^/(.*)$ /index.php/$1 last;
                break;
                        }
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
                root   html;
        }
        location ~ \.php$ {
                root           /data/web/zentaopms/www;
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_index  index.php;
                #fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include        fastcgi_params;

        }
}
四、然后按照步骤
#配置mysql
#设置公司信息
#设置管理员信息
#开放系统防火墙 iptables 或者 firewal

 

转载于:https://my.oschina.net/fellowtraveler/blog/3069141

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值