Home > php教程 > php手册 > 用MySQL内建复制来最佳化可用性(四)

用MySQL内建复制来最佳化可用性(四)

WBOY
Release: 2016-06-13 10:22:13
Original
1007 people have browsed it

第三步:创建相互的主从关系
  首先在B机上的my.cnf文件中,在[mysqld]部分中加入"log-bin",接着重新启动mysqld,然后创建可在它的上面执行复制功能的用户帐号,使用:
GRANT FILE ON *.* TO replicate@10.1.1.1 IDENTIFIED BY "password";
  在B机上运行"FLUSH PRIVILEGES"命令,以便装入在加入复制用户后的新的授权表,接着回到A机上,在它的"my.cnf"中加入下面几行:
master-host=10.1.1.2
master-user=replicate
master-password=password
  在重启A机的服务程序之后,现在我们一拥有了在A机与B机之间的相互主-从关系。不管在哪个服务器上更新一条记录或插入一条记录,都将被复制到另一台服务器上。要注意的是:我不敢确定一个备机合并二进制日志变化的速度有多快,所以用这种方法来进行插入或更新语句的负载平衡可能不是一个好办法。

Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template