LAMP搭建Wordpress博客

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LAMP搭建Wordpress博客相关的知识,希望对你有一定的参考价值。

准备工作

首先,先搭建完成基础的LAMP(可参照文章:华为云主机CentOS 7.3安装LAMP)环境,然后着手搭建wordpress个人博客。

cd /usr/local/apache2.4/htdocs
rm -rf *
wget https://cn.wordpress.org/wordpress-4.8.1-zh_CN.zip
unzip wordpress-4.8.1-zh_CN.zip 
cp -r wordpress/* .
rm -rf wordpress wordpress-4.8.1-zh_CN.zip
/usr/local/apache2.4/bin/apachectl graceful

配置数据库

[[email protected] local]# /usr/local/mysql/bin/mysql -uroot mysql -p
Enter password: 
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 12
Server version: 5.6.35 MySQL Community Server (GPL)

Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

mysql> create database blog;
Query OK, 1 row affected (0.00 sec)

mysql> grant all on blog.* to ‘blog‘@‘127.0.0.1‘ identified by ‘centoslinux‘;
Query OK, 0 rows affected (0.00 sec)

mysql> exit
Bye
[[email protected] local]# /usr/local/mysql/bin/mysql -ublog -pcentoslinux -h127.0.0.1
Warning: Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 13
Server version: 5.6.35 MySQL Community Server (GPL)

Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

mysql>

配置Wordpress

1、登录网页

技术分享

2、填写数据库信息

技术分享

3、编辑wp-config.php文件,可以赋予写权限,也可以手动编辑。

技术分享

4、填写博客相关信息

技术分享

5、完成配置。

技术分享

6、后台与前台

后台页面:

技术分享

前台页面:

技术分享



本文出自 “Gorilla Grodd” 博客,请务必保留此出处http://juispan.blog.51cto.com/943137/1953782

以上是关于LAMP搭建Wordpress博客的主要内容,如果未能解决你的问题,请参考以下文章

Web服务器群集——源码部署搭建LAMP平台上线wordpress博客上线

实现LAMP,wordpress搭建个人博客

LAMP实例搭建wordpress博客步骤

LAMP-搭建WordPress个人博客Discuz论坛

LAMP环境搭建WordPress博客

centos7.3编译安装LAMP环境并搭建WordPress博客