MySQL5 master slave安装配置全过程
我们今天主要向大家介绍的是MySQL5 master slave安装配置的实际操作过程,我们在对MySQL5 master slave进行安装配置日志在以下的背景中,以下就是文章的具体内容的介绍,望你浏览之后会有所收获。 master:192.168.100.231 MySQL(和PHP搭配之最佳组合)5.0.19
我们今天主要向大家介绍的是MySQL5 master slave安装配置的实际操作过程,我们在对MySQL5 master slave进行安装配置日志在以下的背景中,以下就是文章的具体内容的介绍,望你浏览之后会有所收获。
master:192.168.100.231 MySQL(和PHP搭配之最佳组合)5.0.19 linux
slave: 192.168.100.234 MySQL(和PHP搭配之最佳组合)5.0.18 linux
step1) 配置master
在/etc/init.d MySQL(和PHP搭配之最佳组合)d段加入
要同步的数据库)
- binlog_do_db = test
并确保
- server-id=1
- log-bin=MySQL(和PHP搭配之最佳组合)-bin
- step2) 授权slave
- GRANT REPLICATION SLAVE ON *.* TO test@192.168.100.234 IDENTIFIED BY '123';
重启master
step3)配置slave
vi /etc/my.cnf
设置下面4行
- server-id = 2
- master-host = 192.168.100.231
- master-user = test
- master-password = 123
重启发现slave的I/O线程工作正常,而SQL线程不工作
报了很怪的错误
070307 16:30:27 [ERROR] Slave: Error 'Table 'passport.loginuser' doesn't exist' on query. Default database: 'passport'. Query: 'delete from loginuser where tokenRefreshTime
070307 16:30:27 [ERROR] Error running query, slave SQL thread aborted. Fix the problem, and restart the slave SQL thread with "SLAVE START". We stopped at log 'MySQL(和PHP搭配之最佳组合)-bin.000001' position 98
因该是relay log中的数据有问题,于是在
将master机器上的数据拷到244,发现还是有问题。
于是在/etc/my.cnf中加入
- replicate-do-db=test
MySQL5 master slave安装配置日志中需要重启slave,
show slave status发现两个线程工作正常
5)测试
在master的test数据的user表中添加了一条记录
然后在slave上通过show processlist看slave工作情况一切正常,
再查数据库数据似乎没有更新,查看slave错误日志
070307 16:45:16 [ERROR] Slave: Error 'Can't create database 'test'; database exists' on query. Default database: 'test'. Query: 'create database test', Error_code: 1007
070307 16:45:16 [ERROR] Error running query, slave SQL thread aborted. Fix the problem, and restart the slave SQL thread with "SLAVE START". We stopped at log 'MySQL(和PHP搭配之最佳组合)-bin.000040' position 70671
原来都是我当初拷贝数据惹的祸,因为主机日志在我建数据库的时候就开始了,所以我拷贝数据多此一举,于是
我删除拷贝的数据库,一切ok
以上的相关内容就是对MySQL5 master slave安装配置日志的介绍,望你能有所收获。
上一篇: php实现水仙花数示例分享
推荐阅读
-
MySQL5 master slave安装配置全过程
-
php环境配置 php5 MySQL5 apache2 phpmyadmin安装与配置图文教程
-
php环境配置 php5 mysql5 apache2 phpmyadmin安装与配置
-
mysql5.5 master-slave(Replication)配置方法
-
mysql5.5 master-slave(Replication)配置方法
-
CentOS7.5安装配置Harbor1.7的全过程
-
基于MySQL Master Slave同步配置的操作详解_MySQL
-
Master-MasterMySQL复制安装配置试验_MySQL
-
MySQL5.6 数据库主从(Master/Slave)同步安装与配置详解
-
mysql5.5 master-slave(Replication)主从配置