使用LAMP环境搭建wordpress论坛
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用LAMP环境搭建wordpress论坛相关的知识,希望对你有一定的参考价值。
1. 搭建LAMP架构
(1) rpm搭建LAMP环境
[[email protected] ~]# yum install httpd mysql-server mysql php php-mysql -y
(2) 启动apache,mysql相关服务,并设置开机自启动
(3) 设置mysql密码
(4) 检验测试网站是否支持php
[[email protected] ~]# cd /var/www/html/
[[email protected] html]# vim index.php
本机登入192.168.2.103网页测试
2. 搭建wrodpress博客
(1)进入mysql数据建立搭建wrodpress所需要的数据库HK
mysql> create database HKC;
Query OK, 1 row affected (0.00 sec)
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| HKC |
| mysql |
| test |
+--------------------+
4 rows in set (0.00 sec)
(2)上传wrodpress文件到系统解压安装
[[email protected] ~]# ls
anaconda-ks.cfg install.log install.log.syslog wordpress-4.8-zh_CN.zip
[[email protected] HKC]# unzip wordpress-4.8-zh_CN.zip
[[email protected] ~]# ls
anaconda-ks.cfg install.log.syslog wordpress wordpress-4.8-zh_CN.zip
install.log mysql-5.5.32.tar.gz
(3)将解压文件移动到/var/www/html/下
[[email protected] ~]# cp -a wordpress /var/www/html/HKC/
(4)搭建论坛
页面输入192.168.2.103/HKC/进入按照提示搭建
[[email protected] HKC]# vim wp-config.php
搭建Mysql-proxy实现主从同步读写分离可浏览 : http://blog.51cto.com/13719714/2107691
以上是关于使用LAMP环境搭建wordpress论坛的主要内容,如果未能解决你的问题,请参考以下文章
CentOS 7中的httpd-2.4和CentOS 6中的httpd-2.2搭建wordpress博客系统和Discuz!论坛系统
CentOS 使用 LAMP 环境开启 SSL 搭建 WordPress