欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

008LNMP环境配置--禅道安装

程序员文章站 2024-03-12 08:29:20
...

第一步:软件上传

1.创建禅道配置文件专用的nginx目录

cd /data/server/nginx/html/
mkdir chandao

2.上传软件

cd /data/soft
上传软件ZenTaoPMS.8.2.5.zip

 

3.解压软件

unzip ZenTaoPMS.8.2.5.zip

4.将禅道软件转移致专用的nginx目录

mv ZenTaoPMS.8.2.5/zentaopms/* /data/server/nginx/html/chandao/

5.修改文件的属性

chown -R www.www /data/server/nginx

 

第二步:nginx文件配置

[[email protected] etc]# vim /data/server/nginx/conf/nginx.conf

vim:
a 进入编辑模式,换行到最后一个大括号之前,退出编辑模式,输入冒号set paste 进入粘贴模式
然后,点击a进入粘贴模式

# 在http配置段内容增加下面的内容
    server {
        listen       80;
        server_name chandao.itcast.com;
        #静态请求处理的location
        location / {
            root   html/chandao/www;
            index index.php  index.html index.htm;
        }
        #动态请求处理的location
        location ~* .*\.(php|php5)?$ {
            root html/chandao/www;
            fastcgi_pass  127.0.0.1:9000;
            fastcgi_index index.php;
            include fastcgi.conf;
        }
    }

修改完配置文件后,检查语法并重启nginx服务

[[email protected] etc]# /data/server/nginx/sbin/nginx -t
nginx: the configuration file /data/server/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /data/server/nginx/conf/nginx.conf test is successful
[[email protected] etc]# /data/server/nginx/sbin/nginx -s reload

配置域名解析

[[email protected] html]# vim /etc/hosts
...
127.0.0.1   chandao.itcast.com

 

127.0.0.1:9000/chandao.itcast.com/index

第三步:禅道数据库配置

创建数据库

进入数据库:mysql -uroot -p123456

mysql          #登录数据库
show databases;                   #查看数据库
create database chandao;       #创建一个数据库

创建数据库用户

grant all on chandao.* to [email protected]'localhost' identified by '123456';     
flush privileges;
select user,host from mysql.user;

 

第四步:

访问禅道,安装禅道

浏览器访问 chandao.itcast.com

数据库用户名:chandao

密码:123456

PMS使用库:chandao

清空现有数据

 

设置账号:

公司名称:禅道admin

管理员账号:admin

管理员密码:123456

相关标签: 04测试环境配置