个人博客常用的搭建的方式(一)|个人博客常用的搭建的方式(一) php+mysql+nginx+wordpress
1.简介
【个人博客常用的搭建的方式(一)|个人博客常用的搭建的方式(一) php+mysql+nginx+wordpress】wordpress 系统是一个非常成熟的cms内容管理系统。特点就是大而全,几乎所有能想到的功能都能找到相应的插件,而且wordpress有许多api,来做项目的二次开发非常容易(基于php语言)。缺点就是臃肿。
下面我会从头开始讲如何搭建一个基于wordpress的个人博客。首先 ,你要有一台服务器,阿里云的免费赠送的服务器之类的,以linux系统为例。
1. 安装wordpress(nginx+php+mysql的安装我就不说了,网上教程很多,也不是本文的重点。) wordpress就是一个压缩文件,去网上下载
文章图片
image.png 下载下来就是一个zip文件
文章图片
image.png 接下来就把文件上传到云服务器上去:
saidedePro-2:~ saidesun$ scp wordpress-4.7.3-zh_CN.zip root@119.23.206.96:/data
root@119.23.206.96's password:
输入密码,上传成功。
wordpress-4.7.3-zh_CN.zip100% 8995KB1.1MB/s00:08
saidedePro-2:~ saidesun$
登录看一看:
Last login: Wed Sep6 10:42:22 2017 from 101.204.28.156Welcome to Aliyun Elastic Compute Service2 packages available for updating. Please run 'yum update -y' to update.
[root@iZwz9dy4kwhgg3p6ltvd21Z ~]# cd /data
[root@iZwz9dy4kwhgg3p6ltvd21Z data]# ls
dbmongodb_datamongodb_logwordpress-4.7.3-zh_CN.zip
[root@iZwz9dy4kwhgg3p6ltvd21Z data]#
文件上传成功了。
下面用unzip解压:
unzip wordpress-4.7.3-zh_CN.zip
[root@iZwz9dy4kwhgg3p6ltvd21Z data]# ls
dbmongodb_datamongodb_logwordpresswordpress-4.7.3-zh_CN.zip
解压好了。
打开wordpress目录看看
cd wordpress
[root@iZwz9dy4kwhgg3p6ltvd21Z wordpress]# ls
index.phpreadme.htmlwp-adminwp-comments-post.phpwp-contentwp-includeswp-load.phpwp-mail.phpwp-signup.phpxmlrpc.php
license.txtwp-activate.phpwp-blog-header.phpwp-config-sample.phpwp-cron.phpwp-links-opml.phpwp-login.phpwp-settings.phpwp-trackback.php
主要包含了这些文件,index.php是入口文件,wp-content是存放一些插件,主题的地方。
现在我们去写nginx配置
cd /etc/nginx/
[root@iZwz9dy4kwhgg3p6ltvd21Z nginx]# ls
conf.dfastcgi.conffastcgi_paramskoi-utfmime.typesnginx.confnginx.conf.defaultscgi_params.defaultuwsgi_params.default
default.dfastcgi.conf.defaultfastcgi_params.defaultkoi-winmime.types.defaultnginx.conf~scgi_paramsuwsgi_paramswin-utf
[root@iZwz9dy4kwhgg3p6ltvd21Z nginx]#
进入conf.d文件夹,新建一个配置文件
[root@iZwz9dy4kwhgg3p6ltvd21Z nginx]# cd conf.d/
[root@iZwz9dy4kwhgg3p6ltvd21Z conf.d]# vim cms.conf
名字随便取。
cms.conf中配置如下:
server {
## Your website name goes here.
listen8888;
#listen[::]:80 default_server;
server_name 119.23.206.96;
## Your only path reference.
root /data/wordpress;
## This should be in your http block and if it is, it's not needed here.
index index.html index.htm index.php;
include conf.d/drop;
location / {
# This is cool because no php is touched for static content
try_files $uri $uri/ /index.php?q=$uri&$args;
}location ~ \.php$ {
fastcgi_buffers 8 256k;
fastcgi_buffer_size 128k;
fastcgi_intercept_errors on;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass 127.0.0.1:9000;
fastcgi_read_timeout 300;
proxy_connect_timeout600;
proxy_send_timeout600;
proxy_read_timeout600;
send_timeout600;
}location ~* \.(css|js|png|jpg|jpeg|gif|ico)$ {
expires 1d;
}
}
我们配置为监听8888端口,root路径设置为刚刚wordpress的安装路径/data/wordpress,index中要写上index.php,因为wordpress入口是index.php
:wq保存退出
重启nginx
[root@iZwz9dy4kwhgg3p6ltvd21Z conf.d]# service nginx restart
重启完毕后,浏览器访问ip地址加端口
119.23.206.96:8888
就会出现如下的页面
文章图片
成功
到这里nginx的配置就成功了。
2.配置数据库 点击[现在就开始]
文章图片
配置数据库 这时候点提交,会提示连接错误
文章图片
image.png
这是因为你还没有名叫wordpress的数据库
我们去新建一个:
我这里用的是sequel Pro远程连接数据库
文章图片
image.png
新建了一个叫wordpress_test的数据库
文章图片
image.png
再填一遍
出现如下界面
文章图片
image.png
它说不能帮我们自动生成,要我们手动生成。那我们就手动吧。
进入云服务器,部署wordpres的目录,创建一个叫wp-config.php的配置文件
[root@iZwz9dy4kwhgg3p6ltvd21Z /]# cd /data/wordpress
[root@iZwz9dy4kwhgg3p6ltvd21Z wordpress]# vim wp-config.php
将之前的内容复制进去,保存
点安装
进入该页面:
文章图片
image.png
填写相应信息,点安装
进入网站后台,说明安装成功!
文章图片
image.png 现在我们打开网站主页看一眼
文章图片
image.png 大功告成!
wordpress有很多插件以及好看的主题,可以慢慢折腾了。
下篇写通过github page + hexo安装博客。
推荐阅读
- 想你了
- powerdesigner|坐在角落里的人_过路老熊_新浪博客
- 《再见,无名氏》
- day35-IO流02
- 每个人都是幸福的
- 喜乐的心
- 一个人的生活
- 一个人最聪明的地方,是选对留在自己身边的人
- 五分钟写作13(洗衣机)
- 了解“超个人心理学”