标签:mysql 主从 yum
前提:在两台机子先确认selinux,iptables关闭,做好yum源
一、搭建
在143上做如下操作:
yum install -y mysql mysql-server
然后修改/etc/my.cnf在mysqld模块里添加两行
log-bin=mysql-bin
server-id = 1
然后启动msyql /etc/init.d/mysql start
在144上做如下操作:
yum install –y mysql mysql-server
然后修改/etc/my.cnf在mysqld模块里添加
Server-id = 2
然后重启mysql /etc/init.d/mysql start
二、授权
在143上操作:
mysql #进入mysql
grant replication slave on *.* totongbu@‘192.168.223.144‘ identified by ‘123456‘;
给144服务器授权,账号是tongbu,密码是123456
flush privileges; #刷新权限
show master status; #查看同步的文件名和点位
在144上操作:
mysql #进入mysql
change master to
master_host=‘192.168.223.143‘,master_user=‘tongbu‘,master_password=‘123456‘,master_log_file=‘mysql-bin.000003‘,master_log_pos=345;
flush privileges; #刷新权限
slave start; #开启从
show slave status\G; 查看主从状态,如果看到如下的两个yes就表示主从是ok的
本文出自 “pc的个人博客” 博客,请务必保留此出处http://pc1990.blog.51cto.com/10541224/1686284
标签:mysql 主从 yum
原文地址:http://pc1990.blog.51cto.com/10541224/1686284