云计算学习路线教程大纲课件:部署论坛系统Discuz:
一、基础环境[已完成]
[[email protected] ~]# sed -ri ‘/^SELINUX=/cSELINUX=disabled‘ /etc/selinux/config
[[email protected] ~]# setenforce 0
[[email protected] ~]# systemctl stop firewalld.service
[[email protected] ~]# systemctl disable firewalld.service
二、安装LAMP[已完成]
[[email protected] ~]# yum -y install httpd mariadb-server mariadb php php-mysql gd php-gd
[[email protected] ~]# systemctl start httpd mariadb
[[email protected] ~]# systemctl enable httpd mariadb
[[email protected] ~]# mysql_secure_installation
三、安装DIscuz!
- Apache 配置虚拟主机
[[email protected] ~]# vim /etc/httpd/conf.d/yang.conf
[[email protected] ~]# systemctl restart httpd
- 导入ecshop网站源码
[[email protected] ~]# mkdir -p /webroot/yang
[[email protected] ~]# unzip Discuz_X3.2_SC_UTF8.zip
[[email protected] ~]# cp -rf upload/* /webroot/yang/
- 准备数据库
- 安装Discuz! [任何client]
[[email protected] ~]# vim /etc/hosts
192.168.122.161 www.zhufo.top zhufo.top www.tianyun.com tianyun.com www.yang.com yang.com //161为 web server IP
[[email protected] ~]# chmod -R 777 /webroot/yang/
原文地址:https://blog.51cto.com/14489558/2447714