zpjx 发表于 2018-10-1 15:03:07

MySQL一主多从

mysql> stop slave;  
Query OK, 0 rows affected (0.00 sec)
  

  
mysql> change master to master_host = '192.168.65.128', master_user = 'repl', master_port=3306, master_password='123456', master_log_file = 'thermos.000001', master_log_pos=542;
  
Query OK, 0 rows affected, 2 warnings (0.01 sec)
  

  
mysql> start slave;
  
Query OK, 0 rows affected (0.00 sec)
  

  
mysql> show slave status\G


页: [1]
查看完整版本: MySQL一主多从