Cat-God-007

导航

Apache之搭建动态网站(Discuz)

一,导入discuz网站源码
1.logo
2.基础环境

sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config
setenforce 0
systemctl stop firewalld.service
systemctl disable firewalld.service

3.安装LANP

yum -y install httpd mariadb-server mariadb php php-mysql gd php-gd
systemctl start httpd mariadb
systemctl enable httpd mariadb

4.安装Discuz

wget http://download.comsenz.com/DiscuzX/2.5/Discuz_X2.5_SC_UTF8.zip
mkdir -p /webroot/discuz
yum install -y unzip(可以提前下载)
unzip 包名(解压)
cp -rf upload/* /webroot/discuz/
chown -R apache.apache /webroot/discuz/    (授权)

二,Apache配置虚拟主机

vi   /etc/httpd/conf.d/discuz.conf
<VirtualHost *:80>
ServerName www.discuz.com
DocumentRoot /webroot/discuz
</VirtualHost>
<Directory "/webroot/discuz">
Require all granted
</Directory>
systemctl restart httpd

三,准备数据库

mysql

create database discuz;

四.客户端测试
1.域名解析

vi  /etc/hosts
添加
ip地址   www.discuz.com
ping www.discuz.com

再通过浏览器进行访问

2.测试网站可用性
(1)字符测试

yum install -y elinks
elinks http://www.discuz.org

(2)图形测试
通过火狐访问网站网址
在这里插入图片描述

如果没安装httpd,则请先安装
Apache之搭建静态网站
注意事项:
在写网站配置文件时要注意不要写中文注释进去,不然可能会在检查语法时通不过。

感谢大家,点赞,收藏,关注,评论!

posted on 2022-03-13 17:12  成果和地方  阅读(14)  评论(0编辑  收藏  举报  来源