centos7.3搭建LNMP并部署wordpress站点

centos7.3搭建LNMP并部署wordpress站点

一、拓扑图   

centos7.3搭建LNMP并部署wordpress站点

二、准备工作:

    1.三*立主机(虚拟机)

        nginx:10.0.0.11

        php-fpm:10.0.0.2

        mariadb:10.0.0.13

        准备好yum环境(推荐阿里云yum源,请百度搜索)

    2.相关的软件包准备

      10.0.0.11(nginx)

         yum install nginx -y

      10.0.0.2(php-fpm)

         yum install php-fpm php-mysql  php-mbstring php-mcrypt php-xcache -y

      10.0.0.13(mariadb)

         yum install mariadb-server -y

三、搭建步骤

1.nginx主机操作

    1.安装

1
yum install nginx -y

    2.配置nginx支持反向代理php-fpm

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
vi /etc/nginx/conf.d/huwho.conf
    server {
        listen 80;
        server_name www.huwho.com;    #web站点域名
        index index.php index.html index.htm;
        #定义一个nginx的web站点,放置web静态资源
        location / {
        root /web/www;
        index index.html index.htm index.php;
        }
        #定义一个web状态页
        location /status {
        stub_status;
        }
        #pass the PHP scripts to FastCGI server listening on 10.0.0.2:9000
        #反向代理php,放置web动态资源
        location ~* \.php$ {
        root /web/www/php;                #php的站点根目录
        fastcgi_pass 10.0.0.2:9000;        #fastcgi的地址
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME /web/www/php/$fastcgi_script_name;
        include fastcgi_params;
        }
    }

    3.创建相应的目录

1
2
mkdir /web/www/ -pv 
echo nginx web test >> /web/www/

    4.启动nginx服务并测试

1
systemctl start nginx

centos7.3搭建LNMP并部署wordpress站点


2.php-fpm主机操作

    1.安装

1
yum install php-fpm php-mysql  php-mbstring php-mcrypt php-xcache -y

    2.php-fpm配置文件修改

    修改图中三处位置

1
vi /etc/php-fpm.d/www.conf

centos7.3搭建LNMP并部署wordpress站点

centos7.3搭建LNMP并部署wordpress站点

    3.启动php-fpm服务

1
2
3
4
5
6
7
8
9
10
11
12
13
systemctl start php-fpm
[root@localhost ~]# ss -tln
State       Recv-Q Send-Q                                      Local Address:Port                                                     Peer Address:Port              
LISTEN      0      128                                                     *:111                                                                 *:*                  
LISTEN      0      5                                           192.168.122.1:53                                                                  *:*                  
LISTEN      0      128                                                     *:22                                                                  *:*                  
LISTEN      0      128                                             127.0.0.1:631                                                                 *:*                  
LISTEN      0      100                                             127.0.0.1:25                                                                  *:*                  
LISTEN      0      128                                              10.0.0.2:9000                                                                *:*                  
LISTEN      0      128                                                    :::111                                                                :::*                  
LISTEN      0      128                                                    :::22                                                                 :::*                  
LISTEN      0      128                                                   ::1:631                                                                :::*                  
LISTEN      0      100                                                   ::1:25                                                                 :::*

    4.创建动态资源目录,以及一个index.php文件做测试

1
2
3
4
5
6
7
8
9
10
11
12
mkdir /web/www/php -pv
cd /web/www/php
vi index.php
<h1>welcome to www.huwho.com website.</h1>
<?php
$conn=mysql_connect('10.0.0.13','jerry','123456');
if($conn)
echo "It's ok";
else
echo "bad";
phpinfo();
?>

    centos7.3搭建LNMP并部署wordpress站点

3.mysql主机操作

    1.安装

1
yum install mariadb-server -y

    2.mysql配置文件修改

1
2
3
4
5
vi /etc/my.cnf.d/server.cnf 
# this is only for the mysqld standalone daemon
[mysqld]
skip_name_resolve=ON
innodb_file_per_table=ON

    3.安全加固

1
mysql_secure_installation

    4.建立一个用户以及数据库

1
         grant all on wordpress.* to 'jerry'@'10.0.%.%' identified by '123456';

4.安装phpMyAddmin数据库管理工具(php-fpm主机中操作)

    1.下载phpMyAdmin-4.0.10.20-all-languages.tar.gz     

         下载地址https://www.phpmyadmin.net/

    2.解压

1
        tar -xf phpMyAdmin-4.0.10.20-all-languages.tar.gz

    3.创建软链接(因为名字太长)

1
        ln -sv phpMyAdmin-4.0.10.20-all-languages.tar.gz pma

    4.更改名字

1
2
    cd pma
    cp config.sample.inc.php config.inc.php

    5.编辑配置文件  

    修改图中两处信息

     第一处为随机加入字符,加密作用

     第二处为加入数据库ip地址

1
vi config.inc.php

centos7.3搭建LNMP并部署wordpress站点   

    6.测试  

centos7.3搭建LNMP并部署wordpress站点  

5.安装wordpress

    1.准备工作

     下载wordpress(https://wordpress.org/download/)

     nginx主机以及php主机都要安装wordpress以及进行下面的操作。解压文件分别放在对应的站点目录中。

     nginx站点目录:/web/www php-fpm站点目录:/web/www/php

    2.解压wordpress

1
tar  -xvf wordpress-4.7.4-zh_CN.tar.gz

    3.修改配置文件

      修改图中四处信息,分别为:数据库名称,用户名,密码,以及数据库主机ip地址    

1
2
3
cd wordpress/
cp wp-config-sample.php wp-config.php 
vi wp-config.php

centos7.3搭建LNMP并部署wordpress站点

    4.测试页面

centos7.3搭建LNMP并部署wordpress站点

centos7.3搭建LNMP并部署wordpress站点



本文转自 PowerMichael 51CTO博客,原文链接:http://blog.51cto.com/huwho/1941054,如需转载请自行联系原作者

上一篇:惊天秘密!从Thread开始,揭露Android线程通讯的诡计和主线程的阴谋


下一篇:烂泥:yum的使用及配置