新建一台服务器 192.168.88.40
yum -y install mysql mysql-server
编辑etc下的配置文件
vim /etc/my.cnf
输入
bin-log=mysql-bin server-id=40
binlog-ignore-db=mysql
主服务器赋予权限
grant replication slave on *.* to xyq@'192.168.88.40' identified by '123123';
show master status;
新建的这台从服务器保存权限信息。
change master to master_user='xyq',master_password='123123',master_host='192.168.88.20',master_log_file='mysql-bin.000004',master_log-pos=187;
启用从服务器
service mysqld start
start slave。
然后测试。。。。。。。。。。基本没啥问题了。