码迷,mamicode.com
首页 > 数据库 > 详细

MySQL的SQL语句 -复制语句(8)- 控制副本服务器的 SQL 语句 - START SLAV

时间:2020-12-08 12:48:22      阅读:6      评论:0      收藏:0      [点我收藏+]

标签:log   工作方式   channel   int   def   线程   cti   开始   replica   

START SLAVE | REPLICA 语句

1. START {SLAVE | REPLICA} [thread_types] [until_option] [connection_options] [channel_option]
2. 
3. thread_types:
4.     [thread_type [, thread_type] ... ]
5. 
6. thread_type:
7.     IO_THREAD | SQL_THREAD
8. 
9. until_option:
10.     UNTIL {   {SQL_BEFORE_GTIDS | SQL_AFTER_GTIDS} = gtid_set
11.           |   MASTER_LOG_FILE = ‘log_name‘, MASTER_LOG_POS = log_pos
12.           |   RELAY_LOG_FILE = ‘log_name‘, RELAY_LOG_POS = log_pos
13.           |   SQL_AFTER_MTS_GAPS  }
14. 
15. connection_options:
16.     [USER=‘user_name‘] [PASSWORD=‘user_pass‘] [DEFAULT_AUTH=‘plugin_name‘] [PLUGIN_DIR=‘plugin_dir‘]
17. 
18. 
19. channel_option:
20.     FOR CHANNEL channel
21. 
22. gtid_set:
23.     uuid_set [, uuid_set] ...
24.     | ‘‘
25. 
26.uuid_set:
27.     uuid:interval[:interval]...
28. 
29. uuid:
30.     hhhhhhhh-hhhh-hhhh-hhhh-hhhhhhhhhhhh
31. 
32. h:
33.     [0-9,A-F]
34. 
35. interval:
36.     n[-n]
37. 
38.     (n >= 1)

启动复制线程。从 MySQL 8.0.22 开始,不推荐使用 START SLAVE,而应该使用它的别名 START REPLICA。语句的工作方式与以前相同,只是用于语句及其输出的术语发生了更改。两个版本的语句在使用时更新相同的状态变量。

官方网址:
https://dev.mysql.com/doc/refman/8.0/en/start-slave.html

MySQL的SQL语句 -复制语句(8)- 控制副本服务器的 SQL 语句 - START SLAV

标签:log   工作方式   channel   int   def   线程   cti   开始   replica   

原文地址:https://blog.51cto.com/15023289/2559338

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!