1.将本地数据库接到远程
1.1备份本地数据库信息
备份172.16.1.7上的数据库信息
[root@web01 ~]# mysqldump -uroot -p'oldxu.com' --all-databases > mysql-all.sql
1.2推送备份的数据库至数据库服务器
将172.16.1.7 上的数据推送至172.16.1.51
[root@web01 ~]# scp mysql-all.sql root@172.16.1.51:/tmp
1.3登录数据库服务器恢复数据库
登录172.16.1.51 恢复数据
为数据库创建允许远程连接
1.3.1安装数据库
[root@db01 ~]# yum install mariadb mariadb-server -y
[root@db01 ~]# systemctl enable mariadb
[root@db01 ~]# systemctl start mariadb
1.3.2将数据库文件导入进来
#读取sql文件至数据库中
[root@db01 ~]# mysql -uroot < /tmp/mysql-all.sql
[root@db01 ~]# systemctl restart mariadb
1.3.3配置远程用户 允许远程连接
#配置一个远程用户,允许其他服务器能通过远程的方式连接
MariaDB [(none)]> grant all privileges on *.* to 'all'@'%' identified by 'oldxu.com';
MariaDB [(none)]> flush privileges;
1.4应用割接本地数据库改为远程数据库
将 172.16.1.7 程序连接本地的数据库,修改为远程的数据库 ( 应用割接 )
[root@web01 ~]# systemctl disable mariadb
[root@web01 ~]# systemctl stop mariadb
wordpress
#通过搜索关键字数据库密码找到修改数据库文件
[root@web01 wordpress]# find ./ -type f | xargs grep "oldxu.com"
./wp-config.php:define( 'DB_PASSWORD', 'oldxu.com' );
[root@web01 wordpress]# vim ./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' );
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/*
2.扩展多节点web集群
2.1准备另一台服务器
172.16.1.8 web02
2.2服务器安装服务
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
2.3与web1配置保持一致
2.3.1创建用户
1.创建用户和用户组
[root@web02 ~]# groupadd -g 666 www
[root@web02 ~]# useradd -u666 -g666 www
2.3.2同步配置
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/
2.3.3打包代码 推过去
3.打包代码
[root@web01 ~]# tar czf code.tar.gz /code
4.拷贝代码
[root@web01 ~]# scp code.tar.gz root@172.16.1.8:/tmp
2.3.4解包 授权 重启 自启
[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 ~]# systemctl restart nginx nginx
[root@web02 ~]# systemctl enable nginx nginx
3.共享静态资源NFS
准备172.16.1.31 nfs存储服务器
3.1安装nfs
[root@nfs ~]# yum install nfs-utils -y
3.2配置nfs
[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)
3.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/
3.4启动
[root@nfs ~]# systemctl enable nfs
[root@nfs ~]# systemctl restart nfs
3.5共享存放静态资源的目录
在浏览器访问网页时,按f12,找到图片,点击可以看到图片的存放路径
找到web存储的图片所在的路径 http://blog.oldxu.com/wp-content/uploads/2019/09/tt.jpeg
3.5.1将以上传的静态资源推到共享目录
[root@web01 wp-content]# mv uploads/ uploads_bak
#将目录下的所有内容保留原属性-p,-r推目录,推送至共享目录下
[root@web01 wp-content]# scp -rp uploads_bak/* root@172.16.1.31:/data/blog/
[root@web01 wp-content]# mkdir uploads
3.5.2挂载 把存放静态资源的目录挂载过去
将集群里的所有静态资源目录都得挂载过去
在 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
#挂载完成之后检查
df -h