Home Database Mysql Tutorial mysql做主从复制,成功配置案例

mysql做主从复制,成功配置案例

Jun 07, 2016 pm 03:27 PM
mysql copy success article Case Configuration

这篇文章我也放到了oschina上。 之前遇到很多问题,幸亏有大家帮忙,都一一解决了,现在记录如下: 1.准备工作 mysql版本使用的是 mysql-5.5.30-win32.zip 在win下做的测试 解压,并且复制两份,如 d:\mysql\mysql1 d:\mysql\mysql2 mysql1做主数据库,mysql




这篇文章我也放到了oschina上。


        之前遇到很多问题,幸亏有大家帮忙,都一一解决了,现在记录如下:


1.准备工作


mysql版本使用的是 mysql-5.5.30-win32.zip


在win下做的测试


解压,并且复制两份,如


d:\mysql\mysql1


d:\mysql\mysql2


mysql1做主数据库,mysql2做从数据库


在两个目录中分别建立ini目录,并且将my-small.ini文件复制到ini目录中(这里随意用一种ini文件,到时候里面可以去修改),并改名为my.ini。


在两个目录中分别建立run.bat、stop.bai、restart.bat三个文件,分别用于启动、停止、重启mysql。


2.开始配置


修改my.ini文件


进入mysql1目录,打开ini目录中的my.ini文件,修改mysql端口为3311。
注意,my.ini文件中要修改的地方有两处
port= 3311


同理,mysql2目录里面的ini目录下的my.ini文件一样也需要修改,改成3312。


在[mysqld]段中,添加:
server-id= 1


并设置日志文件:
log-bin=d:/mysql/mysql1/log/mysql-bin1.log
log-error=d:/mysql/mysql1/log/mysql-bin1.err


如果你只是需要同步一个数据库,则设置:
binlog_ignore_db=数据库名称


否则不需要添加此行。


在mysql2的my.ini文件的[mysqld]段中,添加:
server-id= 2




修改bat文件


这里给大家参考:


run.bat


@ECHO off 
cls 
color 0A 
ECHO     欢迎使用钛元素的windows2000/2003下的启动MYSQL程序
ECHO ========================================================== 
pause
ECHO 程序运行中,请稍等......
D:\MySQL\mysql1\bin\mysqld.exe --defaults-file=D:\MySQL\mysql1\ini\my.ini
ECHO 启动成功
ECHO ========================================================== 
ECHO 按任意键退出...  
pause
exit






stop.bat


@ECHO off 
cls 
color 0A 
ECHO     欢迎使用钛元素的windows2000/2003下的MYSQL数据库关闭程序
ECHO ========================================================== 
pause
ECHO 程序运行中,请稍等......
ECHO 正在关闭MYsql程序,请稍后...
D:\MySQL\mysql1\bin\mysqladmin -uroot -p --port=3311 shutdown


ECHO 关闭成功
ECHO ========================================================== 
ECHO 按任意键退出...  
pause
exit




restart.bat


@ECHO off 
cls 
color 0A 
ECHO     欢迎使用钛元素的windows2000/2003下的重启MYSQL程序
ECHO ========================================================== 
pause
ECHO 程序运行中,请稍等......
ECHO 正在关闭MYsql程序,请稍后...
D:\MySQL\mysql1\bin\mysqladmin -uroot -p --port=3311 shutdown




ECHO 关闭成功
ECHO 按任意键准备重新启动MYSQL...  
pause
D:\MySQL\mysql1\bin\mysqld.exe --defaults-file=D:\MySQL\mysql1\ini\my.ini
ECHO 启动成功
ECHO ========================================================== 
ECHO 按任意键退出...  
pause
exit




同样,mysql2目录中也放一份。


配置之后,运行mysql,不要去马上操作它(即去使用数据库),因为我们要保证两个数据库获得一致性的快照,当然,可以用设置读锁:
flush tables with read lock;


运行两个run.bat文件,过一会就可以关闭这两个命令行窗口了(不会自动关闭)


进入mysql1,添加一个用于复制的账户,注意,这里添加的权限有两个:REPLICATION CLIENT和REPLICATION SLAVE 。




之后,注意,在mysql1数据库中建立一个新数据库,如shopdb,并建表。然后在mysql2中也建立这个同名的数据库,和表(或者复制,如何复制请自己参考其他文档)。


然后进入mysql2,设置:


CHANGE MASTER TO
->     MASTER_HOST='master_host_name',
->     MASTER_USER='replication_user_name',
->     MASTER_PASSWORD='replication_password',
->     MASTER_LOG_FILE='recorded_log_file_name',
->     MASTER_LOG_POS=recorded_log_position;


然后在mysql2上启动slave:
start slave;


这个时候可以运行show processlist \G查看是否已经连接到mysql1并接受日志。




3 测试


进入mysql1,进入刚刚建立的shopdb数据库,在建立的表中插入数据


进入mysql2,可以查看是否已经自动复制数据过来。


复制了就是成功了,否则得查看问题所在。




附录(转篇很好的资料):






1、出现错误提示、
 
Slave I/O: error connecting to master 'backup@192.168.1.x:3306' - retry-time: 60  retries: 86400, Error_code: 1045
解决方法
从服务器上删除掉所有的二进制日志文件,包括一个数据目录下的master.info文件和hostname-relay-bin开头的文件。
master.info::记录了Mysql主服务器上的日志文件和记录位置、连接的密码。
 
 2、出现错误提示
 
Error reading packet from server: File '/home/mysql/mysqlLog/log.000001' not found (Errcode: 2) ( server_errno=29)
解决方案:
由于主服务器运行了一段时间,产生了二进制文件,而slave是从log.000001开始读取的,删除主机二进制文件,包括log.index文件。
3、错误提示如下
 
Slave SQL: Error 'Table 'xxxx' doesn't exist' on query. Default database: 't591'. Query: 'INSERT INTO `xxxx`(type,post_id,browsenum) SELECT type,post_id,browsenum FROM xxxx WHERE hitdate='20090209'', Error_code: 1146
解决方法
由于slave没有此table表,添加这个表,使用slave start 就可以继续同步。
 
 
4、错误提示如下
 
Error 'Duplicate entry '1' for key 1' on query. Default database: 'movivi1'. Query: 'INSERT INTO `v1vid0_user_samename` VALUES(null,1,'123','11','4545','123')'
 
 
Error 'You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1' on query. Default database: 'club'. Query: 'INSERT INTO club.point_process ( GIVEID, GETID, POINT, CREATETIME, DEMO ) VALUES ( 0, 4971112, 5, '2010-12-19 16:29:28','
1 row in set (0.00 sec)
 
 Mysql > Slave status\G;
显示:Slave_SQL_Running 为 NO
解决方法:
Mysql > stop slave;
Mysql > set global sql_slave_skip_counter =1 ;
Mysql > start slave;
5、错误提示如下
# show slave status\G;
 
Master_Log_File: mysql-bin.000029
Read_Master_Log_Pos: 3154083
Relay_Log_File: c7-relay-bin.000178
Relay_Log_Pos: 633
Relay_Master_Log_File: mysql-bin.000025
Slave_IO_Running: Yes
Slave_SQL_Running: No
Replicate_Do_DB: club
Replicate_Ignore_DB: 
Replicate_Do_Table: 
Replicate_Ignore_Table: 
Replicate_Wild_Do_Table: 
Replicate_Wild_Ignore_Table: 
Last_Errno: 1594
Last_Error: Relay log read failure: Could not parse relay log event entry. The possible reasons are: the master's binary log is corrupted (you can check this by running 'mysqlbinlog' on the binary log), the slave's relay log is corrupted (you can check this by running 'mysqlbinlog' on the relay log), a network problem, or a bug in the master's or slave's MySQL code. If you want to check the master's binary log or slave's relay log, you will be able to know their names by issuing 'SHOW SLAVE STATUS' on this slave.
Skip_Counter: 0
Exec_Master_Log_Pos: 1010663436
这个问题原因是,主数据库突然停止或问题终止,更改了mysql-bin.xxx日志,slave服务器找不到这个文件,需要找到同步的点和日志文件,然后chage master即可。
解决方法:
 
 change master to 
 master_host='211.103.156.198',
 master_user='同步帐号', 
 master_password='同步密码', 
 master_port=3306, 
 master_log_file='mysql-bin.000025', 
 master_log_pos=1010663436;
6、错误提示如下
 
Error 'Unknown column 'qdir' in 'field list'' on query. Default database: 'club'. Query: 'insert into club.question_del (id, pid, ques_name, givepoint, title, subject, subject_pid, createtime, approve, did, status, intime, order_d, endtime,banzhu_uid,banzhu_uname,del_cause,qdir) select id, pid, ques_name, givepoint, title, subject, subject_pid, createtime, approve, did, status, intime, order_d, endtime,'1521859','admin0523','无意义回复',qdir from club.question where id=7330212'
1 row in set (0.00 sec)
这个错误就说club.question_del 表里面没有qdir这个字段 造成的加上就可以了~!
在主的mysql : 里面查询 Desc club.question_del; 
在 错误的从服务器上执行 : alter table question_del add qdir varchar(30) not null;
 7、错误提示如下
  Slave_IO_Running: NO
 这个错误就是IO 进程没连接上  ,想办法连接上把 把与主的POS 号和文件一定要对,然后重新加载下数据。具体步骤:
slave stop;
change master to master_host='IP地址',master_user='club',master_password='mima ',master_log_file='mysqld-bin.000048',MASTER_LOG_POS=396549485;
注:master_log_file='mysqld-bin.000048',MASTER_LOG_POS=396549485;是从主的上面查出 来的 :show master status\G;
LOAD DATA FROM MASTER; 
load data from master;
slave start;
问题解决!




钛元素的网盘资源
计算机以及其他学习资料图书下载
http://taiyuansu.400gb.com 




嘿,现在我上传了超过1500份资料、书籍、文档了
http://taiyuansu.400gb.com


如果有广告页面弹出,请用
ADSafe最好用的网页广告拦截软件
http://www.400gb.com/file/19338616




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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP's big data structure processing skills PHP's big data structure processing skills May 08, 2024 am 10:24 AM

Big data structure processing skills: Chunking: Break down the data set and process it in chunks to reduce memory consumption. Generator: Generate data items one by one without loading the entire data set, suitable for unlimited data sets. Streaming: Read files or query results line by line, suitable for large files or remote data. External storage: For very large data sets, store the data in a database or NoSQL.

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to insert data into a MySQL table using PHP? How to insert data into a MySQL table using PHP? Jun 02, 2024 pm 02:26 PM

How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values ​​to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.

How to create a MySQL table using PHP? How to create a MySQL table using PHP? Jun 04, 2024 pm 01:57 PM

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

How to use MySQL stored procedures in PHP? How to use MySQL stored procedures in PHP? Jun 02, 2024 pm 02:13 PM

To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

The difference between oracle database and mysql The difference between oracle database and mysql May 10, 2024 am 01:54 AM

Oracle database and MySQL are both databases based on the relational model, but Oracle is superior in terms of compatibility, scalability, data types and security; while MySQL focuses on speed and flexibility and is more suitable for small to medium-sized data sets. . ① Oracle provides a wide range of data types, ② provides advanced security features, ③ is suitable for enterprise-level applications; ① MySQL supports NoSQL data types, ② has fewer security measures, and ③ is suitable for small to medium-sized applications.

See all articles