MYSQL主主切换(主库未宕机)_MySQL
bitsCN.com
MYSQL主主切换(主库未宕机)
将主主(3307写--3308读)切换
前提:停止业务,3307上不再有任何写操作
一、将3307设为只读。命令行操作
# 修改配置文件
vim /home/bbq/mysql/mysql-3307/cnf/my.cnf
# 在[mysqld]中增加
read_only
# 重新启动mysqld3307
service mysqld3307 restart
二、检查主库的sql是否在从库上都执行完。mysql客户端操作
# 方法一
# 3308(读转写)执行
SHOW PROCESSLIST;
其中一个user='system user'的线程
如果State值为"Reading event from the relay log",代表正在执行主库同步的中继日志sql
如果State值为"Slave has read all relay log; waiting for the slave I/O thread to update it",代表已经执行完主库同步的中继日志sql
# 方法二(简单不易出错,推荐)
#3307执行:
show master status # 记录File、Position
#3308执行:
select master_pos_wait(File, Position);
三、将3308设为可写。命令行操作
# 修改配置文件
vim /home/bbq/mysql/mysql-3308/cnf/my.cnf
# 在[mysqld]中删除
# read_only
# 重新启动mysqld3308
service mysqld3308 restart
bitsCN.com

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

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)
