LAMP分离结构+ Discuz论坛搭建
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LAMP分离结构+ Discuz论坛搭建相关的知识,希望对你有一定的参考价值。
LAMP分离结构+ Discuz论坛搭建
搭建LAMP分离结构
1、服务器分类:
(1)应用服务器:web服务器。存程序源码,如php/python/jsp
(2)数据库服务器:mysql
(3)文件服务器:存静态文件
3、准备三台虚拟机
Vh01.tedu.cn 192.168.4.1 mysql
Vh02.tedu.cn 192.168.4.2 web
Vh03.tedu.cn 192.168.4.3 web
4、配置mysql服务器
[[email protected] ~]# yum install -y mariadb-server
[[email protected] ~]# systemctl start mariadb
[[email protected] ~]# systemctl enable mariadb
[[email protected] ~]# mysql
MariaDB [(none)]> grant all on . to ‘admin‘@‘%‘ identified by ‘tedu.cn‘;
5、在vh02和vh03上安装web服务
[[email protected] ~]# yum install -y httpd php php-mysql
[[email protected] ~]# systemctl start httpd
[[email protected] ~]# systemctl enable httpd
6、在vh02上部署Discuz
[[email protected] ~]# unzip Discuz_X3.0_SC_UTF8.zip
[[email protected] ~]# cp -r upload/ /var/www/html/bbs
[[email protected] ~]# chown -R apache.apache /var/www/html/bbs
[[email protected] ~]# firefox http://192.168.4.2/bbs
7、配置vh03
[[email protected] ~]# cd /var/www/html/
[[email protected] html]# tar czf bbs.tar.gz bbs
[[email protected] html]# scp bbs.tar.gz 192.168.4.3:/var/www/html/
[[email protected] ~]# cd /var/www/html/
[[email protected] html]# tar xzf bbs.tar.gz
以上是关于LAMP分离结构+ Discuz论坛搭建的主要内容,如果未能解决你的问题,请参考以下文章