CentOS7.x-lnmp环境下安装Discuz论坛

Posted wzhc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7.x-lnmp环境下安装Discuz论坛相关的知识,希望对你有一定的参考价值。

1.安装lnmp.这里采用一键安装的包

yum -y install wget  

wget http://soft.vpser.net/lnmp/lnmp1.6-full.tar.gz

2.加压安装lnmp,具体参考官网安装:https://lnmp.org/install.html

解压包:tar  zxvf  lnmp1.6-full.tar.gz

技术图片

 

 

 进入包,执行安装脚本:

技术图片

 

 

 选择安装需要版本的软件

技术图片

 

 

 检查是否安装成功,有没有进程

ps aux|grep  nginx 

ps aux|grep  php

ps aux|grep  mysql

技术图片

 

 

 

至此lnmp安装成功

找nginx配置文件

find / -name nginx.conf

技术图片

 

 编辑nginx.conf,在配置文件添加

如图:

技术图片

 

 

 测试nginx

cd   /home/wwwroot/default   (此路径就是nginx.conf配置文件中root  后面跟的路径)

vi  index.php创建index.php文件

index.php添加如图

<?php
  phpinfo();
?>

技术图片

  

下载Discuz,放在/usr/local/src

cd usr/local/src

wget http://download.comsenz.com/DiscuzX/3.3/Discuz_X3.3_SC_UTF8.zip

unzip Discuz_X3.3_SC_UTF8.zip 解压文件

我们可以看到上面的解压之后出现三个文件,我们把之前的index.php,删除掉然后然后将upload下的所有文件拷贝到default目录下来

rm /home/wwwroot/default/index.php

技术图片

 

 cp -r upload/* /home/wwwroot/default/  把网站源码解压包拷贝到nginx目录下

技术图片

 

 技术图片

 

 在浏览器输入http://192.168.50.132/install

技术图片

 

 技术图片

 

 文件太多授权麻烦,直接脚本授权

vi  1.txt   

技术图片

 

 

vi  1.sh

#!/bin/bash
for i in `cat ./1.txt`
do
  chmod 777 $i
done

执行1.sh脚本,在安装discuz

技术图片

 

 技术图片

 

 技术图片

 

 技术图片

 

discuz 安装完成

 

 

 

以上是关于CentOS7.x-lnmp环境下安装Discuz论坛的主要内容,如果未能解决你的问题,请参考以下文章

LAMP环境下,安装Discuz!

centos7.0下安装Discuz

我想知道lamp环境安装discuz的步骤,最好有文档下载

ubuntu下搭建Discuz

如何用discuz建网站

搭建 Discuz 论坛