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
推荐阅读
-
008LNMP环境配置--禅道安装
-
Java+Spring+MySql环境中安装和配置MyBatis的教程
-
Java+Spring+MySql环境中安装和配置MyBatis的教程
-
在Mac OS上安装Java以及配置环境变量的基本方法
-
Java下载安装和环境变量配置图文教程
-
在win下打造linux环境: cygwin的安装和简单配置 LinuxSSHvimGCCBash
-
maven安装与环境配置图文教程
-
在Mac OS上安装Java以及配置环境变量的基本方法
-
Eucalyptus在CentOS5.5环境下的单节点安装配置 博客分类: 云计算 云平台Eucalyptus安装
-
Windows下apache ant安装、环境变量配置教程