MySQL
1.建立数据库
#①.安装并启动;
[root@db1 ~]# yum install -y mariadb mariadb-server
[root@db1 ~]# systectl start mariadb
[root@db1 ~]# systectl enable mariadb
#②.创建数据库
[root@db1 ~]# mysql -uroot -p123456
MariaDB [(none)]>grant all privileges on *.* to 'all'@'%' identified by 'oldxu.com';
MariaDB [(none)]>flush privileges;
MariaDB [(none)]>create database boke;
MariaDB [(none)]>show database
[root@db1 ~]# systectl restart mariadb
2.如何将本地的数据库推送至远程数据库
#①.远程
[root@db1 ~]# systectl start mariadb
[root@db1 ~]# systectl enable mariadb
[root@db1 ~]# mysqldump -uroot -p'123456' --all-databases > mysql-all.sql
[root@db1 ~]# scp mysql-all.sql root@172.16.1.51:/tmp
#②.本地
[root@db1 ~]# mysql -root < /tmp/mysql-all.sql
MariaDB [(none)]>grant all privileges on *.* to 'all'@'%' identified by '123456';
MariaDB [(none)]>flush privileges;
#③.将本地的服务连接到远程数据库
>找到对应的配置文件
>库名
>用户名
>用户密码
>远程主机
#④.清理缓存
[root@db1 ~]# rm -fr /boke/wordpress/cache
LNP
1.准备两台web服务器,配置文件必须相同
#①.从远程推送
[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/
#②.打包代码及服务
[root@web01 ~]# tar czf boke.tar.gz /boke
[root@web01 ~]# scp boke.tar.gz root@172.16.1.8:/tmp
#③.远程解压授权(权限必须一致)
[root@web02 ~]# tar xf /tmp/boke.tar.gz -C /boke
[root@web02 ~]# groupadd -g 666 www
[root@web02 ~]# useradd -u666 -g666 www
[root@web02 ~]# chown -R www.www /boke
[root@web02 ~]# vim /etc/nginx/nginx.conf
[root@web02 ~]# vim /etc/php-fpm.d/www.conf
[root@web02 ~]# systemctl restart nginx
[root@web02 ~]# systemctl restart php-fpm
2.配置NFS
#①.安装
[root@nfs ~]# yum install -y nfs-utils
#②.配置
[root@nfs ~]# vim /etc/exprots
/boke 172.16.1.0/24(rw,sync,all_squash,anonuid=666,anongid=666)
#③.初始化环境
[root@nfs ~]# groupadd -g 666 www
[root@nfs ~]# useradd -u666 -g 666 www
#④.启动
[root@nfs ~]# systemctl statrt nfs
3.挂载
[root@web01 ~]# mount -t nfs 172.16.1.31:/boke /boke/wordpress/wp-conten/uploads
[root@web02 ~]# mount -t nfs 172.16.1.31:/boke /boke/wordpress/wp-conten/uploads
4.测试
浏览网页,使用不同的web上传数据及图片,互相切换,看数据及图片是否丢失