美文网首页宝塔
个人博客常用的搭建的方式(一) php+mysql+nginx+

个人博客常用的搭建的方式(一) php+mysql+nginx+

作者: zlx_2017 | 来源:发表于2017-09-06 12:47 被阅读0次

    1.简介

    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.zip  100% 8995KB   1.1MB/s   00:08                                                                                                                                                                      
    saidedePro-2:~ saidesun$ 
    

    登录看一看:

    Last login: Wed Sep  6 10:42:22 2017 from 101.204.28.156
    
    Welcome to Aliyun Elastic Compute Service
    
    2 packages available for updating. Please run 'yum update -y' to update. 
    [root@iZwz9dy4kwhgg3p6ltvd21Z ~]# cd /data
    [root@iZwz9dy4kwhgg3p6ltvd21Z data]# ls
    db  mongodb_data  mongodb_log  wordpress-4.7.3-zh_CN.zip
    [root@iZwz9dy4kwhgg3p6ltvd21Z data]# 
    

    文件上传成功了。
    下面用unzip解压:

    unzip wordpress-4.7.3-zh_CN.zip 
    
    [root@iZwz9dy4kwhgg3p6ltvd21Z data]# ls
    db  mongodb_data  mongodb_log  wordpress  wordpress-4.7.3-zh_CN.zip
    

    解压好了。
    打开wordpress目录看看

    cd wordpress
    [root@iZwz9dy4kwhgg3p6ltvd21Z wordpress]# ls
    index.php    readme.html      wp-admin            wp-comments-post.php  wp-content   wp-includes        wp-load.php   wp-mail.php      wp-signup.php     xmlrpc.php
    license.txt  wp-activate.php  wp-blog-header.php  wp-config-sample.php  wp-cron.php  wp-links-opml.php  wp-login.php  wp-settings.php  wp-trackback.php
    
    

    主要包含了这些文件,index.php是入口文件,wp-content是存放一些插件,主题的地方。
    现在我们去写nginx配置

     cd /etc/nginx/
    [root@iZwz9dy4kwhgg3p6ltvd21Z nginx]# ls
    conf.d     fastcgi.conf          fastcgi_params          koi-utf  mime.types          nginx.conf   nginx.conf.default  scgi_params.default  uwsgi_params.default
    default.d  fastcgi.conf.default  fastcgi_params.default  koi-win  mime.types.default  nginx.conf~  scgi_params         uwsgi_params         win-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.
            listen       8888;
            #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_timeout       600;
                    proxy_send_timeout          600;
                    proxy_read_timeout          600;
                    send_timeout                600;
    
            }
    
            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安装博客。

    相关文章

      网友评论

        本文标题:个人博客常用的搭建的方式(一) php+mysql+nginx+

        本文链接:https://www.haomeiwen.com/subject/zfemjxtx.html