zoukankan      html  css  js  c++  java
  • Replication in Mysql

    --=======================================================
    --登陆本地服务器
    
    mysql --user=root --password=Auto@sql
    
    --=======================================================
    --切换数据库使用use
    
    use test;
    
    
    --=======================================================
    --创建数据库
    
    CREATE DATABASE DB1;
    
    --=======================================================
    --创建表
    
    CREATE TABLE TB1
    (
        ID INT NOT NULL AUTO_INCREMENT,
        NAME VARCHAR(200) NOT NULL,
        PRIMARY KEY(ID)
    )
    
    --=======================================================
    --停止Mysql服务
    
    sc stop mysql
    
    
    --=======================================================
    --启动mysql服务
    
    sc start mysql
    
    --=======================================================
    --在主机上创建复制用户
    
    CREATE USER repl_user;
    GRANT REPLICATION SLAVE ON *.* TO repl_user IDENTIFIED BY 'Auto@sql';
    
    
    --=======================================================
    --在主机上刷新和锁定表
    
    FLUSH TABLES WITH READ LOCK;
    
    --=======================================================
    --备份数据库
    
    mysqldump --user=root --password=Auto@sql --all-database>d:\b1.sql;
    
    --=======================================================
    --取消表锁定
    
    UNLOCK TABLES;
    
    --=======================================================
    --查看master状态
    
    SHOW MASTER STATUS\G;
    
    --=======================================================
    --在从服务器上创建slave
    
    change master to
    master_host='192.168.25.162',
    master_user='repl_user',
    master_password='Auto@sql',
    master_port=3306,
    master_log_file='sqlnode22-log-bin.000001',
    master_log_pos=106;
    
    --=======================================================
    --在从服务器上启动slave
    
    start slave;
    
    --=======================================================
    --在从服务器上查看slave状态
    
    SHOW SLAVE STATUS \G;
    
    如果master_log_file和master_log_pos与主服务器上一致,并且
    Slave_log_running=Yes 和Slave_SQL_Runing=Yes,则主从配置成功
  • 相关阅读:
    【python】元组
    【python】列表
    1-读书的网站
    35-Python
    34-TypeError: BoxSizer.AddSpacer(): argument 1 has unexpected type 'tuple'
    33-wxpython多个frame之间的信息共享
    32-python代码打包成exe文件-pyinstaller
    31-字符串转为 url 格式的两种不同情况
    30-python3 中 bytes 和 string 之间的互相转换
    9-eclispe中右键BuildPath没有了
  • 原文地址:https://www.cnblogs.com/TeyGao/p/2818018.html
Copyright © 2011-2022 走看看