内容へ移動
ClownWiki
ユーザ用ツール
ログイン
サイト用ツール
検索
ツール
文書の表示
以前のリビジョン
バックリンク
最近の変更
メディアマネージャー
サイトマップ
ログイン
>
最近の変更
メディアマネージャー
サイトマップ
トレース:
mysql:mysq_semi-sync_replication_build
この文書は読取専用です。文書のソースを閲覧することは可能ですが、変更はできません。もし変更したい場合は管理者に連絡してください。
===== Mysq semi-sync レプリケーション構築 ===== <code> mysql> INSTALL PLUGIN rpl_semi_sync_master SONAME 'semisync_master.so'; mysql> show plugins; mysql> show variables like 'innodb_flush_log_at_trx_commit'; </code> <code> vi /etc/my.cnf </code> <code> innodb_flush_log_at_trx_commit = 1 server-id=1001 log-bin = log_bin/mysql-bin log-bin-index = log_bin/log_bin.index max_binlog_size = 200M expire_logs_days = 3 binlog_format = mixed rpl_semi_sync_master_enabled=1 rpl_semi_sync_master_timeout=10 </code> <code> mysql> show master status; </code> ■Slave <code> mysql> INSTALL PLUGIN rpl_semi_sync_master SONAME 'semisync_master.so'; mysql> show plugins; mysql> show variables like 'innodb_flush_log_at_trx_commit'; </code> <code> vi /etc/my.cnf </code> <code> innodb_flush_log_at_trx_commit = 1 server-id=1002 rpl_semi_sync_slave_enabled=1 CHANGE MASTER TO MASTER_HOST='192.168.26.42', MASTER_USER='slave', MASTER_PASSWORD='slavepassword', MASTER_LOG_FILE='mysql-bin.000002', MASTER_LOG_POS=107; </code> <code> mysql> start slave; mysql> show slave status\G </code>
mysql/mysq_semi-sync_replication_build.txt
· 最終更新: 2025/02/16 13:53 by
127.0.0.1
ページ用ツール
文書の表示
以前のリビジョン
バックリンク
文書の先頭へ