mysql主从和主主模式_MySQL
bitsCN.com
mysql 复制的实现机制
1)首先主mysql把操作语句保存在bin-log中
2)从服务器启动一个进程或线程向主mysql发起请求
3)从mysql 把主mysql的bin-log中的操作语句复制的从mysql的relay-log中
4)在从上执行这些操作语句
配置
主mysql 这里主要介绍要改变的内容(主从就是从各自为主的独立模式改变过来的)
1)在/etc/my.cnf 添加或修改如下内容
bin-log = mysql.bin-log #定义bin-log的文件名 (默认保存在数据目录下)
bin-log-index = mysql.bin-log.index #定义bin-log-index的文件名
binlog-format = mixed #定义binlog的格式
server-id = 1 #一定要确保主mysql的server-id 小于从mysql的server-id
2)启动mysql 和配置
#service mysqld start
#mysql #进入mysql
#set password for root@‘localhost’=password(‘mima’);
#set password for root@‘127.0.0.1’=password(‘mima’);
#grant replication slave,replication client on *.* to username@'ip' identified by 'mima'; #赋予username 拥有复制的权限
#flush privileges;
#show master status; #查看主mysql的状态
从mysql
1)在/etc/my.cnf 添加或修改如下内容
relay-log = mysql.relay-log #定义relay-log的文件名 (默认保存在数据目录下)
relay-log-index = mysql.relay-log.index #定义relay-log-index的文件名
server-id = 11 #一定要大于主mysql的server-id
2)启动mysql 和配置
#service mysqld start
#mysql #进入mysql
#set password for root@‘localhost’=password(‘mima’);
#set password for root@‘127.0.0.1’=password(‘mima’);
#flush privileges;
#change master to master_host='master_ip',master_user='username',master_password='mima';
#链接主mysql
#start slave;
#show slave status;
测试
在主mysql上建立一个数据库或表,查看从mysql是否自动‘复制’的过来
主主 的模式其实就是两边都是主,同时互为主从,可以简单的理解为把主从的配置文件整合一下就行了~~
主主模式有一个最大的问题就是当主从都同时向同一张表中写数据时,如果对应的id是自动增加,这是就有了严重的问题,为了解决这个问题,需要设定低端不同的起始值,并指定自动增加的变量为2。
作者“残雪”

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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.

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.

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 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.

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.

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.

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

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.
