第二十周作业

一、编译安装LNMP,并安装wordpress

主机: 一台(192.168.17.7),系统为CentOS7.6

软件包:nginx-1.16.1.tar.gz,mariadb-10.2.25.tar.gz,php-7.3.12.tar.bz2,wordpress-5.2.2.tar.gz

1、Ngnix的编译安装

(1) 安装相关依赖包

[root@centos7 data]# yum install-y gcc pcre-devel openssl-devel zlib-devel

(2)解压源码包,创建nginx用户,开始编译安装

[root@centos7 data]# tar -zxvf nginx-1.16.1.tar.gz

[root@centos7 data]# useradd -r -s /sbin/nologin nginx

[root@centos7 data]# cd nginx-1.16.1/

[root@centos7 nginx-1.16.1]# ./configure --prefix=/apps/nginx \

> --user=nginx \

> --group=nginx \

> --with-http_ssl_module \

> --with-http_v2_module \

> --with-http_realip_module \

> --with-http_stub_status_module \

> --with-http_gzip_static_module \

> --with-pcre \

> --with-stream \

> --with-stream_ssl_module \

> --with-stream_realip_module

[root@centos7 nginx-1.16.1]# make && make install

(3)启动nginx服务

[root@centos7 nginx-1.16.1]# /apps/nginx/sbin/nginx

[root@centos7 nginx-1.16.1]# ss -nlt | grep 80

LISTEN    0      128          *:80                      *:* 

2、Mariadb的编译安装

(1) 解压源码包,创建mysql用户和数据目录

[root@centos7 ~]# cd /data

[root@centos7 data]# tar -zxvf mariadb-10.2.25.tar.gz

[root@centos7 data]# useradd -r -s /sbin/nologin -d /data/mysql mysql

[root@centos7 data]# mkdir /data/mysql

[root@centos7 data]# chown root:mysql /data/mysql

(2) 安装相关依赖包

[root@centos7 data]# yum install -y bison bison-devel zlib-devel libcurl-devel libarchive-devel boost-devel gcc gcc-c++ cmake ncurses-devel gnutls-devel libxml2-devel openssl-devel libevent-devel libaio-devel


(3) 编译安装mariadb

[root@centos7 data]# cd mariadb-10.2.25/

[root@centos7 mariadb-10.2.25]# cmake . \

> -DCMAKE_INSTALL_PREFIX=/apps/mysql \

> -DMYSQL_DATADIR=/data/mysql/ \

> -DSYSCONFDIR=/etc/ \

> -DMYSQL_USER=mysql \

> -DWITH_INNOBASE_STORAGE_ENGINE=1 \

> -DWITH_ARCHIVE_STORAGE_ENGINE=1 \

> -DWITH_BLACKHOLE_STORAGE_ENGINE=1 \

> -DWITH_PARTITION_STORAGE_ENGINE=1 \

> -DWITHOUT_MROONGA_STORAGE_ENGINE=1 \

> -DWITH_DEBUG=0 \

> -DWITH_READLINE=1 \

> -DWITH_SSL=system \

> -DWITH_ZLIB=system \

> -DWITH_LIBWRAP=0 \

> -DENABLED_LOCAL_INFILE=1 \

> -DMYSQL_UNIX_ADDR=/data/mysql/mysql.sock \

> -DDEFAULT_CHARSET=utf8 \

> -DDEFAULT_COLLATION=utf8_general_ci

 [root@centos7 mariadb-10.2.25]# make && make install

(4) 配置环境变量,初始化数据库,生成数据库文件

[root@centos7 mariadb-10.2.25]# echo 'PATH=/apps/mysql/bin:$PATH' > /etc/profile.d/mysql.sh

[root@centos7 mariadb-10.2.25]# . /etc/profile.d/mysql.sh

[root@centos7 mariadb-10.2.25]# cd /apps/mysql/

[root@centos7 mysql]# scripts/mysql_install_db --datadir=/data/mysql --user=mysql

(5) 准备配置文件与启动脚本

[root@centos7 mysql]# cp /apps/mysql/support-files/my-huge.cnf /etc/my.cnf

[root@centos7 mysql]# cp /apps/mysql/support-files/mysql.server /etc/init.d/mysqld

(6) 启动服务

[root@centos7 mysql]# chkconfig --add mysqld

[root@centos7 mysql]# service mysqld start

Starting mysqld (via systemctl):                          [  OK  ]

[root@centos7 mysql]# ss -ntlp | grep 3306

LISTEN    0      80          :::3306                    :::*                  users:(("mysqld",pid=22869,fd=21))

3、php-fpm的编译安装

1) 安装相关依赖包

[root@centos7 mysql]# yum install-y libxml2-devel bzip2-devel libmcrypt-devel

(2) 解压源码包,然后进行编译安装

[root@centos7 data]# tar -jxvf php-7.3.12.tar.bz2

[root@centos7 php-7.3.12]# ./configure --prefix=/apps/php \

> --enable-mysqlnd \

> --with-mysqli=mysqlnd \

> --with-pdo-mysql=mysqlnd \

> --with-openssl \

> --with-freetype-dir \

> --with-jpeg-dir \

> --with-png-dir \

> --with-zlib \

> --with-libxml-dir=/usr \

> --with-config-file-path=/etc \

> --with-config-file-scan-dir=/etc/php.d \

> --enable-mbstring \

> --enable-xml \

> --enable-sockets \

> --enable-fpm \

> --enable-maintainer-zts \

> --disable-fileinfo

[root@centos7 php-7.3.12]# make && make install

编译代码

[root@centos7 php-7.3.12]# make && make install

./configure --prefix=/apps/php \

--enable-mysqlnd \

--with-mysqli=mysqlnd \

--with-pdo-mysql=mysqlnd \

--with-openssl \

--with-freetype-dir \

--with-jpeg-dir \

--with-png-dir \

--with-zlib \

--with-libxml-dir=/usr \

--with-config-file-path=/etc \

--with-config-file-scan-dir=/etc/php.d \

--enable-mbstring \

--enable-xml \

--enable-sockets \

--enable-fpm \

--enable-maintainer-zts \

--disable-fileinfo

(3) 准备配置文件,并修改 www.conf 配置文件中启动用户与组为 nginx,默认用户与组为 nobody

[root@centos7 php-7.3.12]# cp php.ini-production /etc/php.ini

[root@centos7 php-7.3.12]# cd /apps/php/etc/

[root@centos7 etc]# cp php-fpm.conf.default php-fpm.conf

[root@centos7 etc]# cd php-fpm.d/

[root@centos7 php-fpm.d]# cp www.conf.default www.conf

[root@centos7 php-fpm.d]# vim www.conf

#找到以下两项,将nobody改为nginx

user = nginx

group = nginx

(4) 准备服务启动脚本,并启动 php-fpm 服务

[root@centos7 php-fpm.d]# cd /data/php-7.3.12/

[root@centos7 php-7.3.12]# cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm

[root@centos7 php-7.3.12]# chmod +x /etc/init.d/php-fpm

[root@centos7 php-7.3.12]# chkconfig --add php-fpm

[root@centos7 php-7.3.12]# service php-fpm start

Starting php-fpm  done

[root@centos7 php-7.3.12]# ss -nlt | grep 9000

LISTEN    0      128    127.0.0.1:9000                    *:*

4、wordpress的安装

(1) 在数据库中创建库和授权用户

[root@centos7 ~]# mysql

Welcome to the MariaDB monitor.  Commands end with ; or \g.

Your MariaDB connection id is 11

Server version: 10.2.25-MariaDB-log Source distribution

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

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

MariaDB [(none)]> CREATE DATABASE wordpress charset 'utf8';

Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> GRANT ALL ON wordpress.* to 'wpuser'@'192.168.17.%' IDENTIFIED BY 'centos';

Query OK, 0 rows affected (0.00 sec)

(2) 解压wordpress程序包到 /apps/nginx/html/ 目录,并在源码目录给 nginx 用户设置访问控制权限

[root@centos7 ~]# cd /

[root@centos7 data]# tar -xf wordpress-5.2.2.tar.gz -C /apps/nginx/html

[root@centos7 data]# setfacl -Rm u:nginx:rwx /apps/nginx/html/wordpress

(3) 修改nginx的虚拟主机配置文件,并重启nginx服务

root@centos7 ~]# vim /apps/nginx/conf/nginx.conf

#在http{}段中添加以下内容

    server {

        listen 80;

        server_name blog.wordpress.com;


        location / {

            root html/wordpress;

            index index.php index.html index.htm;

        }

        location ~ \.php$ {

            root html/wordpress;

            fastcgi_pass 127.0.0.1:9000;

            fastcgi_index index.php;

            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

            include fastcgi_params;

        }

    }

[root@centos7 ~]# /apps/nginx/sbin/nginx -t

nginx: the configuration file /apps/nginx/conf/nginx.conf syntax is ok

nginx: configuration file /apps/nginx/conf/nginx.conf test is successful

[root@centos7 ~]# /apps/nginx/sbin/nginx -s reload

(4) 设置 hosts 文件,使域名可以解析到主机,在 hosts 文件中添加一行(如果利用Linux图形桌面上的浏览器进行网站安装,hosts文件为 /etc/hosts,如果是用windows安装,则host文件 路径为 C:\Windows\System32\drivers\etc)

192.168.17.7 blog.wordpress.com

(5) 利用浏览器进行安装,输出域名blog.wordpress.com,根据安装向导安装

二、配置虚拟主机,www.x.com域名实现首页访问

admin.x.com域名实现wordpress的后台访问

(2) 登录wordpress后台,在Settings --》General Settings 中,将 WordPress Address (URL) 改为后台地址admin.x.com,Site Address (URL) 改为前台地址www.x.com


(3) 修改nginx的配置文件,在http{}中添加以下内容

server {

    listen 80;

    server_name www.x.com;

    location / {

        root html/wordpress;

        index index.php index.html index.htm;

    }

    #添加重写规则,用前台域名访问后台时,跳转到后台域名访问

    location ~ /(wp-admin|wp-login.php) {

        rewrite / http://admin.x.com/wp-login.php;

    }

    location ~ \.php$ {

        root html/wordpress;

        fastcgi_pass 127.0.0.1:9000;

        fastcgi_index index.php;

        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

        include fastcgi_params;

    }

    }


    server {

        listen 80;

        server_name admin.x.com;

        location / {

            root html/wordpress;

            index wp-login.php index.php;

    }


        location ~ \.php$ {

            root html/wordpress;

            fastcgi_pass 127.0.0.1:9000;

            fastcgi_index index.php;

            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

            include fastcgi_params;

        }

    }

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,254评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,875评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,682评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,896评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,015评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,152评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,208评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,962评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,388评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,700评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,867评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,551评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,186评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,901评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,689评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,757评论 2 351