Notes on the process of deploying Zen Tao under Linux 7.4

1. Check the digits of your system version [getconf LONG_BIT] command, and go to the official website to find the corresponding software package according to the system version. The environment of this deployment is Centos7.4 64-bit version.

wget https://dl.cnezsoft.com/zentao/12.5.3/ZenTaoPMS.12.5.3.zbox_64.tar.gz

2. Unzip the installation package to the /opt/ directory and modify the default access port of ZenTao service

#解压安装包
tar -zxvf ZenTaoPMS.12.5.3.zbox_64.tar.gz -C /opt/
#修改禅道服务的默认端口
/opt/zbox/zbox -ap 8001 //修改禅道apache服务的访问端口号为8001
/opt/zbox/zbox -mp 3307 //修改禅道自带mysql服务器的访问端口号3307
/opt/zbox/zbox restart //重启禅道服务

3. Visit ZenTao [ip:8001], enter the set account admin password 123456 to log in successfully
Insert picture description here

Guess you like

Origin blog.csdn.net/weixin_43161762/article/details/113727767