mysql主从同步环境配置标准.pdf

  1. 1、本文档共3页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
mysql主从同步环境配置标准

MySQL 主从同步环境配置标准 /usr/local/mysql/bin/mysqladmin -u root password new-password /usr/local/mysql/bin/mysqladmin -u root -h 127.0.0.1 127.0.0.1 password new-password yum -y install ntpdate ntpdate cn.pool.ntp.org clock -w mysql 配置 1,master 配置 [mysqld] server-id=1 log-bin=mysql-bin #read-only=0 binlog-do-db=lqg_test #需要同步的数据库名,如果有多个数据库,可重复此参数,每个数据库一行 binlog-ignore-db=mysql #不同步 mysql 系统数据库 binlog-ignore-db=test binlog-ignore-db=information_schema binlog-ignore-db=performance_schema 2,slave1 配置 [mysqld] server-id=2 log-bin=mysql-bin #read-only=1 replicate-do-db=lqg_test replicate-ignore-db=mysql #不同步 mysql 系统数据库 replicate-ignore-db=test replicate-ignore-db=information_schema replicate-ignore-db=performance_schema 设置密码 /usr/local/mysql/bin/mysqladmin -u root password Guoqing@161001 mysql -uroot -p Guoqing@161001 grant all on *.* to root@%identified by Guoguo@666Ft99; grant replication slave,reload,super on *.* to repl@10.170.4.91 identified by Shenzhen2016OK666 with grant option; flush privileges; grant replication slave,reload,super on *.* to repl@10.169.92.114 identified by Shenzhen2016OK666 with grant option; flush privileges; 在主库上执行 mysql show master status; +++++ | File | Position | Binlog_Do_DB | Binlog_Ignore_DB | +++++ | mysql-bin.000005 | 921 | lqg_db,lqg_test | mysql,test,information_schema,performance_schema | +++++ 1 row in set (0.00 sec) mysql flush tables with read lock; Query OK, 0 rows affected (0.00 sec) 锁表 flush tables with read lock; #数据库只读锁定命令,防止导出数据库的时候有数据写入 在从库 slave01 上执行 mysql change master to master_host=10.170.25.100, master_user=repl, master_password=Shenzhen2016OK666, master_log_file=mysql-bin.000005, master_log_pos=921; 启动 slave 检测是否同步成功 mysql start slave; mysql show slave status\G; Slave_IO_Running: Yes Slave_SQL_Running: Yes 正常了 在从库 slave02 上执行 mysql change master to master_host=10.170.25.100, master_user=repl, master_password=Shenzhen2016

您可能关注的文档

文档评论(0)

jiupshaieuk12 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

版权声明书
用户编号:6212135231000003

1亿VIP精品文档

相关文档