day-33 拆分数据库至独立服务器

1、数据库的拆分由于单台服务器运行lnmp架构会导致网站访问慢,当内存被吃满时,很容易导致系统出现故障,从而kill掉MySQL数据库,所以需要将web和数据库进行独立部署。

2、数据库拆分解决了问题
缓解web网站的压力
增强数据库读写性能
提高用户访问的速度

3、将lnmp拆分为lnp+mysql

#1、备份web01上的数据库信息
[root@web01 ~]# mysqldump -uroot -p'oldxu.com' --all-databases > mysql-all.sql

#2.将web上的数据推送至db01(mysql)
root@web01 ~]# scp mysql-all.sql [email protected]:/tmp

#3.登录db01(mysql) 恢复数据  
[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

配置一个远程用户,允许其他服务器能通过远程的方式连接
[root@db01 ~]# mysql -uroot -pyangyang.com
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 28
Server version: 5.5.64-MariaDB MariaDB Server

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)]> grant all privileges on *.* to 'all'@'%' identified by "yangyang.com";
Query OK, 0 rows affected (0.00 sec)

#MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.00 sec)

#MariaDB [(none)]> Bye

#4.将 172.16.1.7 程序连接本地的数据库,修改为远程的数据库  ( 应用割接 )
[root@web01 ~]# systemctl disable mariadb
[root@web01 ~]# systemctl stop mariadb

4、修改wordpress连接数据库的配置文件

#1、查看wordpress配置文件的位置
[root@web01 wordpress]# find ./ -type f  | xargs grep "yangyang.com"
./wp-config.php:define( 'DB_PASSWORD', 'yangyang.com' );

#2、修改后的配置文件
[root@web01 wordpress]# cat ./wp-config.php

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

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

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

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

5、修改wecenter连接数据库的配置文件

#1、查看wecenter配置文件的位置
[root@web01 zh]# find ./ -type f  | xargs grep "yangyang.com"
./system/config/database.php:  'password' => 'yangyang.com',
    
#2、修改后的配置文件
[root@web01 zh]# cat ./system/config/database.php 
 'utf8mb4',
  'host' => '172.16.1.51',
  'username' => 'all',
  'password' => 'yangyang.com',
  'dbname' => 'zh',
);
$config['slave'] = false;

6、修改edusoho连接数据库的配置文件

#1、查看edusoho配置文件的位置
[root@web01 edusoho]# find ./ -type f  | xargs grep "yangyang.com"
./app/config/parameters.yml

#2、修改后的配置文件
[root@web01 edusoho]# cat ./app/config/parameters.yml 
parameters:
    database_driver: pdo_mysql
    database_host: 172.16.1.51
    database_port: 3306
    database_name: edusoho
    database_user: all
    database_password: 'yangyang.com'
    mailer_transport: smtp
    mailer_host: 127.0.0.1
    mailer_user: null
    mailer_password: null
    locale: zh_CN
    secret: 8e7rrd4lb400wg4ookwkswsowg8gg84
    webpack_base_url: http://edusoho.yangdan.com
    user_partner: none

清理缓存
[root@web01 edusoho]# rm -rf /code/edusoho/app/cache/*

7、扩展多台web节点,简称web集群

#1、准备一台web02的服务器

#2、确保web02  nginx配置 php配置  代码 和web01一致
1).创建用户和用户组
[root@web02 ~]# groupadd -g 666 www
[root@web02 ~]# useradd -u666 -g666 www

2)、切到web01 上执行如下操作
[root@web01 ~]# rsync -avz --delete  /etc/nginx [email protected]:/etc/
[root@web01 ~]# rsync -avz --delete  /etc/php.ini [email protected]:/etc/
[root@web01 ~]# rsync -avz --delete  /etc/php-fpm.d [email protected]:/etc/
        
3)、打包代码
[root@web01 ~]# tar czf code.tar.gz /code

4)、拷贝代码
[root@web01 ~]# scp code.tar.gz [email protected]:/tmp

#3、回到web02  然后解包  授权  重启服务,并加入开机自启
[root@web02 ~]# tar xf /tmp/code.tar.gz -C /
[root@web02 ~]# systemctl restart nginx php-fpm
[root@web02 ~]# systemctl enable nginx php-fpm
[root@web02 ~]# ll /code
[root@web02 ~]# systemctl restart nginx php-fpm
[root@web02 ~]# systemctl enable nginx php-fpm
劫持host 保存8,注释7 然后ping一下(cmp)
停掉7的nginx systemctl stop nginx http://blog.yangyang.com/wp-admin/post-new.php
写一篇文章带图片 切回7 ping 一下blog.yangyang.com  刷新直到访问不了 然后在启动7 在刷新直到访问不了

src="http://blog.yangyang.com/wp-content/uploads/2019/09/33-1024x673.jpgsrcset="http://blog.yangyang.com/wp-content/uploads/2019/09/33.jpg 1024w, http://blog.yangyang.com/wp-content/uploads/2019/09/33-300x197.jpg 300w, http://blog.yangyang.com/wp-content/uploads/2019/09/33-768x505.jpg 768w"

8、将多台节点的静态资源共享至NFS

#1)、安装
[root@nfs ~]# yum install nfs-utils -y

#2)、配置
[root@nfs ~]# cat /etc/exports
/data/blog 172.16.1.0/24(rw,all_squash,anonuid=666,anongid=666)
/data/zh 172.16.1.0/24(rw,all_squash,anonuid=666,anongid=666)
/data/edusoho 172.16.1.0/24(rw,all_squash,anonuid=666,anongid=666)

#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/

#4)、启动
[root@nfs ~]# systemctl restart nfs
[root@nfs ~]# systemctl enable nfs

#3.找到web存储的图片所在的路径  "http://blog.yangyang.com/wp-content/uploads/2019/09/timg.jpg" 


F12 查看图片位置
/code/wordoress/wp-content/uploads/2019/09/tt.jpeg
tree uploads/

[root@web01 wp-content]# mv uploads/ uploads_bak
    [root@web01 wp-content]# scp -rp uploads_bak/* [email protected]:/data/blog/
    [root@web01 wp-content]# mkdir uploads
    
#4.在 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
    
    测试:先把web02 停了,测试web01(写一篇文章,添加新图片)
    切换8 刷新直到访问不了 再打开8的nginx 就和7一致了
    
    
PS: 注意权限问题
[root@nfs ~]# chown -R www.www /data/

你可能感兴趣的:(day-33 拆分数据库至独立服务器)