nginx架构演进-拆分数据库及nfs

1.为什么要进行数据库的拆分

由于单台服务器运行LNMP架构会导致网站访问缓慢,当内存吃满时,容易导致系统出现oom,从而kill掉MySQL数据库,所以将web和数据库进行独立部署。

2.数据库拆分后解决了什么问题

1.缓解web网站的压力

2.增强数据库的读写性能

3.提高用户访问的速度

3.数据库拆分架构

4.如何将LNMP拆分为LNP+MySQL

4.1备份172.16.1.7上的数据库信息

[root@web01 ~]# mysqldump -uroot -p'oldxu.com' --all-databases > mysql-all.sql

4.2将172.16.1.7上的数据推送至172.16.1.51

[root@web01 ~]# scp mysql-all.sql root@172.16.1.51:/tmp

4.3登录172.16.1.51恢复数据

[root@db01 ~]# yum install mariadb mariadb-server -y
[root@db01 ~]# systemctl enable mariadb
[root@db01 ~]# systemctl start mariadb

读取sql文件至数据库中

[root@db01 ~]# mysql -uroot < /tmp/mysql-all.sql
[root@db01 ~]# systemctl restart mariadb

配置一个远程用户,允许其他服务器能通过远程的方式连接

mysql -u数据库名 -p数据库密码

MariaDB [(none)]> grant all privileges on *.* to 'all'@'%' identified by 'oldxu.com';
MariaDB [(none)]> flush privileges;

4.4将172.16.1.7程序连接至本地的数据库,修改为远程的数据库(应用割接)

[root@web01 ~]# systemctl disable mariadb
[root@web01 ~]# systemctl stop mariadb

4.5修改对应的数据的配置文件

[root@web01 wordpress]# find ./ -type f  | xargs grep "oldxu.com"
    ./wp-config.php:define( 'DB_PASSWORD', 'oldxu.com' );

    /** WordPress数据库的名称 */
    define( 'DB_NAME', 'wordpress' );

    /** MySQL数据库用户名 */
    define( 'DB_USER', 'all' );

    /** MySQL数据库密码 */
    define( 'DB_PASSWORD', 'oldxu.com' );

    /** MySQL主机 */
    define( 'DB_HOST', '172.16.1.51' );

    wecenter
    [root@web01 zh]# find ./ -type f  | xargs grep "oldxu.com"
    ./system/config/database.php:  'password' => 'oldxu.com',

    edusoho
    [root@web01 edusoho]# find ./ -type f  | xargs grep "oldxu.com"
    ./app/config/parameters.yml
    
    清理缓存
    [root@web01 edusoho]# rm -rf /code/edusoho/app/cache/*

5.扩展多台web节点,简称web集群

5.1准备一台172.16.1.18的服务器

5.2确保172.16.1.8上安装Nginx PHP

yum -y install nginx php71w php71w-cli php71w-common php71w-devel php71w-embedded php71w-gd php71w-mcrypt php71w-mbstring php71w-pdo php71w-xml php71w-fpm php71w-mysqlnd php71w-opcache php71w-pecl-memcached php71w-pecl-redis php71w-pecl-mongodb

5.3确保172.16.1.8 nginx配置 代码和172.16.1.7一致

5.4.1创建用户和用户组

[root@web02 ~]# groupadd -g 666 www
[root@web02 ~]# useradd -u666 -g666 www

5.4.2切到172.16.1.7上执行如下的操作

[root@web01 ~]# rsync -avz --delete  /etc/nginx root@172.16.1.8:/etc/
[root@web01 ~]# rsync -avz --delete  /etc/php.ini root@172.16.1.8:/etc/
[root@web01 ~]# rsync -avz --delete  /etc/php-fpm.d root@172.16.1.8:/etc/

5.4.3打包代码

[root@web01 ~]# tar czf code.tar.gz /code

5.4.4拷贝代码

[root@web01 ~]# scp code.tar.gz root@172.16.1.8:/tmp
5.5回到172.16.1.8  然后解包  授权  重启服务,并加入开机自启

[root@web02 ~]# tar xf /tmp/code.tar.gz -C /
[root@web02 ~]# systemctl restart nginx php-fpm
[root@web02 ~]# systemctl enable nginx php-fpm

6.如何将多台节点的静态资源共享至NFS

6.1准备172.16.1.31nfs存储服务器

6.1.1安装

[root@nfs ~]# yum install nfs-utils -y

6.1.2配置

[root@nfs ~]# cat /etc/exports
/data/blog 172.16.1.0/24(rw,sync,all_squash,anonuid=666,anongid=666)
/data/edu 172.16.1.0/24(rw,sync,all_squash,anonuid=666,anongid=666)
/data/zh 172.16.1.0/24(rw,sync,all_squash,anonuid=666,anongid=666)
6.1.3初始化环境

[root@nfs ~]# mkdir -p /data/{blog,zh,edu}
[root@nfs ~]# groupadd -g 666 www
[root@nfs ~]# useradd -u666 -g666 www
[root@nfs ~]# chown -R www.www /data/
6.1.4启动

[root@nfs ~]# systemctl enable nfs
[root@nfs ~]# systemctl restart nfs

6.2找到web存储的图片所在的路径 http://blog.oldxu.com/wp-content/uploads/2019/09/tt.jpeg

[root@web01 wp-content]# mv uploads/ uploads_bak
[root@web01 wp-content]# scp -rp uploads_bak/* root@172.16.1.31:/data/blog/
[root@web01 wp-content]# mkdir uploads

6.3在 172.16.1.7 172.16.1.8 ....  应用服务器上进行挂载

[root@web01 wp-content]# mount -t nfs 172.16.1.31:/data/blog /code/wordpress/wp-content/uploads

S: 注意权限问题
    [root@nfs ~]# chown -R www.www /data/
 6.4.访问网站 测试



       


   


   

原文地址:https://www.cnblogs.com/hh-y/p/11552515.html