溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

centos中如何進行禪道項目管理軟件部署

發(fā)布時間:2021-10-19 17:36:03 來源:億速云 閱讀:112 作者:柒染 欄目:大數(shù)據(jù)

centos中如何進行禪道項目管理軟件部署,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

一、安裝php環(huán)境
#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
#設(shè)置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文件夾

centos中如何進行禪道項目管理軟件部署

三、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
#設(shè)置公司信息
#設(shè)置管理員信息
#開放系統(tǒng)防火墻 iptables 或者 firewal

看完上述內(nèi)容,你們掌握centos中如何進行禪道項目管理軟件部署的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI