images\cherry_red.png1 采用docker部署Clodreve应用
      images\cherry_blue.png1.1 1,安装docker-compose
      images\cherry_blue.png1.2 2,搭建部署LNMP结构
         images\cherry_orange.png1.2.1 编写php配置文件
         images\cherry_orange.png1.2.2 编写nginx.conf配置文件
      images\cherry_blue.png1.3 3,配置应用目录
         images\cherry_orange.png1.3.1 nfs远程卷挂载
      images\cherry_blue.png1.4 MySQL配置
      images\cherry_blue.png1.5 测试部署应用
   images\cherry_red.png2 Cloudreve云架构设计图
      images\cherry_blue.png2.1 网络模式
      images\cherry_blue.png2.2 Linux命令
         images\cherry_orange.png2.2.1 chown
         images\cherry_orange.png2.2.2 find
         images\cherry_orange.png2.2.3 awk(文本切片处理)
         images\cherry_orange.png2.2.4 cut
      images\cherry_blue.png2.3 存储系统创建拉伸
         images\cherry_orange.png2.3.1 LVM逻辑卷的创建及使用
      images\cherry_blue.png2.4 Nginx初始化操作
         images\cherry_orange.png2.4.1 Nginx 惊群效应
      images\cherry_blue.png2.5 Nginx负载均衡反向代理
         images\cherry_orange.png2.5.1 负载均衡的算法
      images\cherry_blue.png2.6 存储服务器搭建
      images\cherry_blue.png2.7 构建动态服务器PHP
      images\cherry_blue.png2.8 Keepalived代理服务器高可用
         images\cherry_orange.png2.8.1 Keeplived原理
      images\cherry_blue.png2.9 MySQL主从模型构建
         images\cherry_orange.png2.9.1 主从复用(读写分离)
      images\cherry_blue.png2.10 上线Cloud应用
1,克隆一台新的机器,规划ip地址,并且初始化mysql操作。
下载并且安装mysql包
rpm -e --nodeps mariadb-libs

rpm -ivh mysql-community-common-5.7.24-1.el7.x86_64.rpm
rpm -ivh mysql-community-libs-5.7.24-1.el7.x86_64.rpm
rpm -ivh mysql-community-client-5.7.24-1.el7.x86_64.rpm
rpm -ivh mysql-community-devel-5.7.24-1.el7.x86_64.rpm
rpm -ivh mysql-community-server-5.7.24-1.el7.x86_64.rpm

images\12-1.png


2,初始化mysql
eSR4wg&d6rI.
vim /etc/my.cnf
末尾处添加skip-name-resolve

cat /var/log/mysqld.log | grep "password" 查询mysql密码

images\12-2.png


登陆并且修改密码
images\12-3.png


授权用于从服务器同步的数据库用户
images\12-4.png


修改主服务器的配置文件 开启 bin-log日志
vim /etc/my.cnf
images\12-5.png

登陆数据库
show master status
images\12-6.png

3,从服务器配置,克隆一台服务器,初始化mysql ,跟上述操作一致
修改配置文件
images\12-7.png


登陆数据库并且修改配置文件
change master to master_host='192.168.52.107', master_user='sync',master_password='Uplooking_123',master_log_file='mysql-bin.000001',master_log_pos=154;
images\12-8.png

配置成功完成。

images\12-9.png


显示成功了