search
HomeDatabaseMysql TutorialMySql配置主从复制 读写分开
MySql配置主从复制 读写分开Jun 07, 2016 pm 04:14 PM
mysqlcopyRead and writeConfiguration

MySql配置主从复制 读写分离 ? mysql版本:5.6.13 OS:windows server 2008 Master 配置 ? my.ini配置文件中 主从复制需要通过二进制日志文件进行,须开启二进制日志功能并配置Server ID ? [mysqld]log-bin=mysql-binserver-id=1 server-id 为1-2 32 ? -1 ? 之

MySql配置主从复制 读写分离

?

mysql版本:5.6.13

OS:windows server 2008

Master 配置

?

my.ini配置文件中

主从复制需要通过二进制日志文件进行,须开启二进制日志功能并配置Server ID

?

[mysqld]
log-bin=mysql-bin
server-id=1

server-id 为1-232?-1? 之间,默认为0(拒绝所有slave

?

innodb引擎耐用性增强

innodb_flush_log_at_trx_commit=1?and?sync_binlog=1

?

For the greatest possible durability and consistency in a replication setup using?InnoDB?with transactions, you should use?innodb_flush_log_at_trx_commit=1?and?sync_binlog=1?in the master?my.cnf?file.

?

?slave 配置

server-id=2

防止服务器主机名修改

?relay-log=mysqld-relay-bin

?

master

创建具有复制权限的账户repl

GRANT REPLICATION SLAVE ON *.*
-> TO 'repl'@'remotehost.mydomain.com' IDENTIFIED BY 'slavepass';

?

<span><span><span>mysql> </span></span><strong  class="userinput"><code ><span><span>FLUSH TABLES WITH READ LOCK;</span></span></code></strong></span>

对于<span><span>InnoDB</span></span>表的注意?<span><span>FLUSH TABLES WITH READ LOCK</span></span>?<span><span>COMMIT</span></span>操作。

保留客户端发出?<span><span>FLUSH TABLES</span></span>语句运行,这样,读锁仍然有效。如果你退出客户端,该锁被释放。

?

?

?

使用?<span><span>SHOW MASTER STATUS</span></span>语句来确定当前的二进制日志文件的名称和位置:

?

<span><span><span>的mysql> </span></span><strong  class="userinput"><code ><span><span>SHOW MASTER STATUS;</span></span></code></strong></span><span><span>
<span>+ ------------------ + ---------- + -------------- + ---- -------------- +</span></span></span><span><span>
<span>|“文件”|“位置| Binlog_Do_DB | Binlog_Ignore_DB |</span></span></span><span><span>
<span>+ ------------------ + ---------- + -------------- + ---- -------------- +</span></span></span><span><span>
<span>MYSQL-bin.000003 | 73 |测试|说明书,MYSQL |</span></span></span><span><span>
<span>+ ------------------ + ---------- + -------------- + ---- -------------- +</span></span></span>

?

<span><span>文件</span></span>栏显示的日志文件的名称和<span><span>位置</span></span>显示在文件中的位置。在这个例子中,二进制日志文件是?<span><span>mysql-bin.000003的</span></span>位置是73。记录这些值。你需要它们,以后当你设立的奴隶。他们表示复制坐标奴隶从主应该开始处理新的更新。

?

如果主已经运行以前没有二进制日志启用,通过<span><span>SHOW MASTER STATUS</span></span>mysqldump的-主数据显示日志文件的名称和位置值将是空的。在这种情况下,你需要使用指定的奴隶的日志文件和位置后的值是空字符串(<span><span>''</span></span>)和<span><span>4</span></span>

?

你现在有你需要的信息,可以让从开始读取的二进制日志在正确的位置开始复制。

?

设置主从连接信息

?

mysql> <span><strong  class="userinput"><code >CHANGE MASTER TO</code></strong>
    ->     <strong  class="userinput"><code >MASTER_HOST='<em  class="replaceable"><code >master_host_name</code></em>',</code></strong>
    ->     <strong  class="userinput"><code >MASTER_USER='<em  class="replaceable"><code >replication_user_name</code></em>',</code></strong>
    ->     <strong  class="userinput"><code >MASTER_PASSWORD='<em  class="replaceable"><code >replication_password</code></em>',</code></strong>
    ->     <strong  class="userinput"><code >MASTER_LOG_FILE='<em  class="replaceable"><code >recorded_log_file_name</code></em>',</code></strong>
    ->     <strong  class="userinput"><code >MASTER_LOG_POS=<em  class="replaceable"><code >recorded_log_position</code></em>;</code></strong></span>

查看连接状态 show slave status\G;

?

?读写分离配置

windows设置PATH?

?

创建代理 222为Master 223为只读

?

<span><strong  class="userinput"><code >sc create "Proxy" DisplayName= "MySQL Proxy" start= "auto" binPath= "F:\tool\mysql-proxy-0.8.2-winx64-x86\bin\mysql-proxy-svc.exe 
--proxy-address=localhost:3306 --proxy-backend-addresses=10.133.10.222:3306 --proxy-read-only-backend-addresses=10.133.10.223:3306"
</code></strong></span>

?

 <strong  class="userinput"><code ><span>net start proxy</span></code></strong>
C:\> <strong  class="userinput"><code ><span>sc delete proxy</span></code></strong>

配置完之后测试,从服务器 stop slava

通过代理进行insert操作,在进行查询。然后start slave ,主从复制没有问题。

读写分离暂时还未测试

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
图文详解mysql架构原理图文详解mysql架构原理May 17, 2022 pm 05:54 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

mysql怎么去掉第一个字符mysql怎么去掉第一个字符May 19, 2022 am 10:21 AM

方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

mysql的msi与zip版本有什么区别mysql的msi与zip版本有什么区别May 16, 2022 pm 04:33 PM

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

mysql怎么替换换行符mysql怎么替换换行符Apr 18, 2022 pm 03:14 PM

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

mysql怎么将varchar转换为int类型mysql怎么将varchar转换为int类型May 12, 2022 pm 04:51 PM

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

MySQL复制技术之异步复制和半同步复制MySQL复制技术之异步复制和半同步复制Apr 25, 2022 pm 07:21 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

带你把MySQL索引吃透了带你把MySQL索引吃透了Apr 22, 2022 am 11:48 AM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

mysql怎么判断是否是数字类型mysql怎么判断是否是数字类型May 16, 2022 am 10:09 AM

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.