MySQL主從同步配置

MySQL主從配置文件

主庫配置

[client]
port            = 13309
socket          = /data/mysqldata/mysql.sock
default-character-set = utf8mb4
[mysql]
no-auto-rehash
[mysqld]

user    = mysql
port    = 13309
socket  = /data/mysqldata/mysql.sock
basedir = /usr
datadir = /data/mysqldata/data
pid-file=/data/mysqldata/mysqld.pid
skip-federated
skip-blackhole
skip-name-resolve
skip_external_locking
flush=OFF
sql_mode=STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION  
event-scheduler=ON
default-storage-engine=InnoDB
character_set_server=utf8mb4
collation_server=utf8mb4_general_ci
lower_case_table_names=1
explicit_defaults_for_timestamp
group_concat_max_len=1048576
back_log=1000
max_connections=1000
max_user_connections=800
thread_cache_size=128
max_connect_errors=99999
wait_timeout=172800
interactive_timeout=172800
net_buffer_length=32K
max_allowed_packet=64M
max_heap_table_size=500M
tmp_table_size=2M
sort_buffer_size=8M
max_length_for_sort_data=16k
join_buffer_size=4M
read_rnd_buffer_size=8M
table_open_cache=10240
table_open_cache_instances=16
query_cache_type=0   
query_cache_size=0   
general_log_file=/data/mysqldata/data/general.log
log-error=/data/mysqldata/error2.log
long_query_time=2
slow_query_log
slow_query_log_file=/data/mysqldata/data/slow-query.log
log-bin-index=/data/mysqldata/data/mysql-bin.index
log-bin=/data/mysqldata/data/mysql-bin
relay-log-index=/data/mysqldata/data/mysql-relay-bin.index
relay-log=/data/mysqldata/data/mysql-relay-bin
binlog_cache_size=256K
max_binlog_size=512M
binlog-format=ROW
binlog_rows_query_log_events=ON
binlog_row_image=minimal
binlog-checksum=CRC32
sync_binlog=10
expire_logs_days=10
log_slave_updates=1
log_bin_trust_function_creators=1
auto_increment_increment=1
auto_increment_offset=1
allow-suspicious-udfs
innodb_support_xa=1             
sysdate-is-now
#slave_skip_errors=all
key_buffer_size=8M
bulk_insert_buffer_size=16M
myisam_sort_buffer_size=32M
myisam_max_sort_file_size=2G
myisam_repair_threads=1
myisam-recover-options=default
read_buffer_size=1M
innodb_buffer_pool_size= 6G
innodb_buffer_pool_instances=8
innodb_max_dirty_pages_pct=40
innodb_sort_buffer_size=16M
innodb_data_home_dir=/data/mysqldata/data
innodb_data_file_path=ibdata1:4096M:autoextend
innodb_autoextend_increment=128
innodb_file_per_table
innodb_open_files=21490
innodb_fast_shutdown=1
innodb_force_recovery=0
innodb_flush_log_at_trx_commit=2
innodb_log_buffer_size=64M
innodb_log_file_size=1G
innodb_log_files_in_group=2
innodb_log_group_home_dir=/data/mysqldata/data
innodb_adaptive_flushing_lwm=30
innodb_read_io_threads=8
innodb_write_io_threads=8
innodb_flush_method=O_DIRECT
innodb_flush_neighbors=2
innodb_lru_scan_depth=1024
innodb_change_buffering=all
innodb_purge_threads
innodb_commit_concurrency=0
innodb_thread_concurrency=0
innodb_concurrency_tickets=1024
innodb_autoinc_lock_mode=1
innodb_stats_on_metadata=0
innodb_lock_wait_timeout=300
innodb_rollback_on_timeout=1
innodb_max_undo_log_size=1G
innodb_undo_directory=/data/mysqldata/data
innodb_undo_log_truncate=1
innodb_undo_logs=128
innodb_undo_tablespaces=4
innodb_purge_rseg_truncate_frequency=128
gtid_mode=on
enforce-gtid-consistency
server-id = 18794
#不需要同步的數(shù)據(jù)庫
binlog-ignore-db=mysql
[mysqldump]
quick
max_allowed_packet = 2M
[mysqld_safe]
pid-file=/data/mysqldata/mysqld.pid

從庫配置

[client]
port = 13309
socket = /data/mysqldata/mysql.sock
default-character-set = utf8mb4
[mysql]
no-auto-rehash
[mysqld]
user    = mysql
port    = 13309
socket  = /data/mysqldata/mysql.sock
basedir = /usr
datadir = /data/mysqldata/data
pid-file=/data/mysqldata/mysqld.pid
skip-federated
skip-blackhole
skip-name-resolve
skip_external_locking
flush=OFF
sql_mode=STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION  
event-scheduler=ON
default-storage-engine=InnoDB
character_set_server=utf8mb4
collation_server=utf8mb4_general_ci
lower_case_table_names=1
explicit_defaults_for_timestamp
group_concat_max_len=1048576
back_log=1000
max_connections=1000
max_user_connections=800
thread_cache_size=128
max_connect_errors=99999
wait_timeout=172800
interactive_timeout=172800
net_buffer_length=32K
max_allowed_packet=64M
max_heap_table_size=500M
tmp_table_size=2M
sort_buffer_size=8M
max_length_for_sort_data=16k
join_buffer_size=4M
read_rnd_buffer_size=8M
table_open_cache=10240
table_open_cache_instances=16
query_cache_type=0   
query_cache_size=0   
general_log_file=/data/mysqldata/data/general.log
log-error=/data/mysqldata/error.log
long_query_time=2
slow_query_log
slow_query_log_file=/data/mysqldata/data/slow-query.log
log-bin-index=/data/mysqldata/data/mysql-bin.index
log-bin=/data/mysqldata/data/mysql-bin
relay-log-index=/data/mysqldata/data/mysql-relay-bin.index
relay-log=/data/mysqldata/data/mysql-relay-bin
binlog_cache_size=256K
max_binlog_size=512M
binlog-format=ROW
binlog_rows_query_log_events=ON
binlog_row_image=minimal
binlog-checksum=CRC32
sync_binlog=10
expire_logs_days=10
log_slave_updates=1
log_bin_trust_function_creators=1
auto_increment_increment=1
auto_increment_offset=1
allow-suspicious-udfs
innodb_support_xa=1             
sysdate-is-now
#slave_skip_errors=all
key_buffer_size=8M
bulk_insert_buffer_size=16M
myisam_sort_buffer_size=32M
myisam_max_sort_file_size=2G
myisam_repair_threads=1
myisam-recover-options=default
read_buffer_size=1M
innodb_buffer_pool_size= 6G
innodb_buffer_pool_instances=8
innodb_max_dirty_pages_pct=40
innodb_sort_buffer_size=16M
innodb_data_home_dir=/data/mysqldata/data
innodb_data_file_path=ibdata1:4096M:autoextend
innodb_autoextend_increment=128
innodb_file_per_table
innodb_open_files=21490
innodb_fast_shutdown=1
innodb_force_recovery=0
innodb_flush_log_at_trx_commit=2
innodb_log_buffer_size=64M
innodb_log_file_size=1G
innodb_log_files_in_group=2
innodb_log_group_home_dir=/data/mysqldata/data
innodb_adaptive_flushing_lwm=30
innodb_read_io_threads=8
innodb_write_io_threads=8
innodb_flush_method=O_DIRECT
innodb_flush_neighbors=2
innodb_lru_scan_depth=1024
innodb_change_buffering=all
innodb_purge_threads
innodb_commit_concurrency=0
innodb_thread_concurrency=0
innodb_concurrency_tickets=1024
innodb_autoinc_lock_mode=1
innodb_stats_on_metadata=0
innodb_lock_wait_timeout=300
innodb_rollback_on_timeout=1
innodb_max_undo_log_size=1G
innodb_undo_directory=/data/mysqldata/data
innodb_undo_log_truncate=1
innodb_undo_logs=128
innodb_undo_tablespaces=4
innodb_purge_rseg_truncate_frequency=128
gtid_mode=on
enforce-gtid-consistency
server-id = 1946117
#不需要同步數(shù)據(jù)庫
binlog-ignore-db=mysql
[mysqldump]
quick
max_allowed_packet = 2M
[mysqld_safe]
pid-file=/data/mysqldata/mysqld.pid

主庫執(zhí)行命令

show master status;


#創(chuàng)建主從同步用戶晕粪,并授權(quán)
create user repl;

grant replication slave on *.* to 'repl'@'127.0.0.1'identified by '123456';

flush privileges;

從庫執(zhí)行命令

#從庫設(shè)置主從同步信息
change master to master_host='127.0.0.1',
master_port=3306,master_user='test',
master_password='123456',
master_log_file='master-bin.000002',
master_log_pos=120;

#開啟主從同步
start slave;

#暫停主從同步
stop slave;

#查看主從同步狀態(tài)
show slave status \G

授權(quán)遠程訪問
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456' WITH GRANT OPTION;
FLUSH PRIVILEGES;

#從庫加入master主庫同步用戶信息
master-host=192.168.8.10
master-user=rep
master-password=123456
master-port=3306
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市渐裸,隨后出現(xiàn)的幾起案子巫湘,更是在濱河造成了極大的恐慌,老刑警劉巖昏鹃,帶你破解...
    沈念sama閱讀 207,113評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件尚氛,死亡現(xiàn)場離奇詭異,居然都是意外死亡洞渤,警方通過查閱死者的電腦和手機阅嘶,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評論 2 381
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來载迄,“玉大人讯柔,你說我怎么就攤上這事』っ粒” “怎么了魂迄?”我有些...
    開封第一講書人閱讀 153,340評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長惋耙。 經(jīng)常有香客問我捣炬,道長,這世上最難降的妖魔是什么绽榛? 我笑而不...
    開封第一講書人閱讀 55,449評論 1 279
  • 正文 為了忘掉前任湿酸,我火速辦了婚禮,結(jié)果婚禮上蒜田,老公的妹妹穿的比我還像新娘稿械。我一直安慰自己,他們只是感情好冲粤,可當我...
    茶點故事閱讀 64,445評論 5 374
  • 文/花漫 我一把揭開白布美莫。 她就那樣靜靜地躺著页眯,像睡著了一般。 火紅的嫁衣襯著肌膚如雪厢呵。 梳的紋絲不亂的頭發(fā)上窝撵,一...
    開封第一講書人閱讀 49,166評論 1 284
  • 那天,我揣著相機與錄音襟铭,去河邊找鬼碌奉。 笑死,一個胖子當著我的面吹牛寒砖,可吹牛的內(nèi)容都是我干的赐劣。 我是一名探鬼主播,決...
    沈念sama閱讀 38,442評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼哩都,長吁一口氣:“原來是場噩夢啊……” “哼魁兼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起漠嵌,我...
    開封第一講書人閱讀 37,105評論 0 261
  • 序言:老撾萬榮一對情侶失蹤咐汞,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后儒鹿,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體化撕,經(jīng)...
    沈念sama閱讀 43,601評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,066評論 2 325
  • 正文 我和宋清朗相戀三年约炎,在試婚紗的時候發(fā)現(xiàn)自己被綠了植阴。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,161評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡章钾,死狀恐怖墙贱,靈堂內(nèi)的尸體忽然破棺而出热芹,到底是詐尸還是另有隱情贱傀,我是刑警寧澤,帶...
    沈念sama閱讀 33,792評論 4 323
  • 正文 年R本政府宣布伊脓,位于F島的核電站府寒,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏报腔。R本人自食惡果不足惜株搔,卻給世界環(huán)境...
    茶點故事閱讀 39,351評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望纯蛾。 院中可真熱鬧纤房,春花似錦、人聲如沸翻诉。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至舒岸,卻和暖如春绅作,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背蛾派。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評論 1 261
  • 我被黑心中介騙來泰國打工俄认, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人洪乍。 一個月前我還...
    沈念sama閱讀 45,618評論 2 355
  • 正文 我出身青樓眯杏,卻偏偏與公主長得像,于是被迫代替她去往敵國和親壳澳。 傳聞我的和親對象是個殘疾皇子役拴,可洞房花燭夜當晚...
    茶點故事閱讀 42,916評論 2 344

推薦閱讀更多精彩內(nèi)容