Home Database Mysql Tutorial 在mysql的replicatin环境中master/slave常用参数

在mysql的replicatin环境中master/slave常用参数

Jun 07, 2016 pm 03:39 PM
master mysql environment

author:skate time:2012/07/12 在mysql的replicatin环境中master/slave常用参数 master所有参数 1. log-bin=mysql-bin //控制master的是否开启binlog记录功能;二进制文件最好放在单独的目录下,这不但方便优化、更方便维护。重新命名二进制日志很简单,只需

author:skate
time:2012/07/12


 
在mysql的replicatin环境中master/slave常用参数
 
master所有参数


1.
log-bin=mysql-bin 
 //控制master的是否开启binlog记录功能;二进制文件最好放在单独的目录下,这不但方便优化、更方便维护。重新命名二进制日志很简单,只需要修改[mysqld]里的
log_bin选项,这里有一点需要注意,如下例子:


log_bin=/home/mysql/binlog/binlog.log

[root@localhost ~]# ll /home/mysql/binlog
total 8
-rw-rw---- 1 mysql mysql 98 Mar  7 17:24 binlog.000001
-rw-rw---- 1 mysql mysql 33 Mar  7 17:24 binlog.index
[root@localhost ~]#

 

从上面的例子可以看到,我要重新调整logbin的路径为“/home/mysql/binlog”,但我log_bin的设置却有些不同,这里需要注意两点
1.1).目录的文件夹命名不能有空格
1.2).指定目录时候一定要以*.log结尾,即不能仅仅指定到文件夹的级别,否则在重启mysql时会报错。

2.
server-id=1
//每个server服务的标识,在master/slave环境中,此变量一定要不一样

3.
expire_logs_days=15
//通过此来实现master自动删除binlog

4.
innodb_flush_log_at_trx_commit=1
//此单数表示在事务提交时,处理重做日志的方式;此变量有三个可选值0,1,2
 0:当事务提交时,并不将事务的重做日志写入日志文件,而是等待每秒刷新一次
 1:当事务提交时,将重做日志缓存的内容同步写到磁盘日志文件,为了保证数据一致性,在replication环境中使用此值。
 2:当事务提交时,将重做日志缓存的内容异步写到磁盘日志文件(写到文件系统缓存中)

建议必须设置innodb_flush_log_at_trx_commit=1
 
5.
sync_binlog=1
//此参数表示每写缓冲多少次就同步到磁盘;sync_binlog=1表示同步写缓冲和磁盘二进制日志文件,不使用文件系统缓存,在使用innodb事务引擎时,在复制环境中,为了保证最大的可用性,都设置为“1”,但会对影响io的性能。及时设置为“1”,也会有问题发生,假如当二进制日志写入磁盘,但事务还没有commit,这个时候宕机,当服务再次起来的恢复的时候,无法回滚以及记录到二进制日志的未提交的内容;这个时候就会造成master和slave数据不一致,这时就需要参数innodb_support_xa=1来保证。建议必须设置

6.
innodb_support_xa=1
//此参数与XA事务有关,它保证了二进制日志和innodb数据文件的同步,保证复制环境中数据一致性。建议必须设置

7.
binlog-do-db=skate_db
//只记录指定数据库的更新到二进制日志中

8.
binlog-do-table=skate_tab
//只记录指定表的更新到二进制日志中

9.
binlog-ignore-db=skate_db
//忽略指定数据库的更新到二进制日志中

10.
log_slave_updates=1
//此参数控制slave数据库是否把从master接受到的log并在本slave执行的内容记录到slave的二进制日志中,在级联复制环境中(包括双master环境),这个参数是必须的

11.
binlog_format=statement|row|mixed
//控制以什么格式记录二进制日志的内容,默认是mixed

12.
max_binlog_size
//master的每个二进制日志文件的大小,默认1G

13.
binlog_cache_size
//所有未提交的事务都会咱被记录到一个缓存或临时文件中,待提交时,统一同步到二进制日志中,此变量是基于session的,每个会话开启一个binlog_cache_size大小的缓存。通过变量“Binlog_cache_disk_use”和“Binlog_cache_use”来设置binlog_cache_size的大小。

说明:
Binlog_cache_disk_use:使用临时文件写二进制日志的次数
Binlog_cache_use:使用缓冲记写二进制的次数

14.
auto_increment_increment=2  //增长的步长
auto_increment_offset=1     //起始位置
//在双master环境下可以防止键值冲突

 
slave所用参数

1.
server-id=2
//和master的含义一样,如上 

2.
log-bin=mysql-bin  
//和master的含义一样,如上

3.
relay-log=relay-bin 
//中继日志文件的路径名称

4. 
relay-log-index=relay-bin  
//中继日志索引文件的路径名称

5.
log_slave_updates=1 
//和master的含义一样,如上

6.
read_only=1
//使数据库只读,此参数在slave的复制环境和具有super权限的用户不起作用,对于复制环境设置read_only=1非常有用,它可以保证slave只接受master的更新,而不接受client的更新。

mysq> set global read_only=1
 
7. 
skip_slave_start
//使slave在mysql启动时不启动复制进程,mysql起来之后使用 start slave启动,建议必须

8.
replicate-do-db
//只复制指定db

9.
replicate-do-table
//只复制指定表

10.
replicate-ingore-table
//忽略指定表

11.
replicate_wild_do_table=skatedb.%
//模糊匹配复制指定db

12.
 auto_increment_increment=2
 auto_increment_offset=1
//和master含义一样,参考如上
 
13。
log_slow_slave_statements
//在slave上开启慢查询日志,在query的时间大于long_query_time时,记录在慢查询日志里
 
14.
max_relay_log_size
//slave上的relay log的大小,默认是1G

15.
relay_log_info_file
//中继日志状态信息文件的路径名称

16.
relay_log_purge
//当relay log不被需要时就删除,默认是on, SET GLOBAL relay_log_purge=1

17.
replicate-rewrite-db=from_name->to_name
//数据库的重定向,可以把分库汇总到主库便于统计分析
 

 

 

 

------end----

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 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks 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 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 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 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