Home Backend Development PHP Tutorial How to implement automatic switching of MySQL master-slave replication with PHP

How to implement automatic switching of MySQL master-slave replication with PHP

May 17, 2023 am 08:19 AM
php, mysql, master-slave replication

In the modern application architecture, the database is a crucial part. For high-load and high-availability applications, the MySQL master-slave replication architecture is a widely used solution. However, under the MySQL master-slave replication model, after the master node fails, the slave node needs to be manually switched to the master node. This will not only cause service interruption, but also require manual intervention, increasing operation and maintenance costs and risks.

In order to solve this problem, we can automatically determine and switch to a healthy slave node through the PHP program to ensure the high availability of the database. This article will introduce how to use PHP to implement automatic switching of MySQL master-slave replication.

1. Preparation

Before starting, ensure that the following conditions have been met:

1.1 MySQL master-slave replication architecture has been deployed successfully and is running normally.

1.2 PHP has been installed on the server and can call MySQL-related extension libraries.

1.3 Create an administrator account in MySQL and grant the user REPLICATION SLAVE and REPLICATION CLIENT permissions.

2. Implementation principle

In the MySQL master-slave replication architecture, data synchronization between the master node and the slave node is based on the binary log. The master node records all modification operations to the binary log and transmits the log to the slave node. The slave node ensures data consistency by reading the contents of the binary log.

After the master node fails, you need to manually switch from the slave node to the master node. However, MySQL provides the CHANGE MASTER TO statement, which can dynamically modify the master node address of the slave node. After the master node fails, we can call the CHANGE MASTER TO statement through PHP to switch the slave node to the master node to ensure the high availability of the database.

3. Implementation steps

3.1 Connect to MySQL database in PHP

Use the mysqli library in PHP to connect to the MySQL database. The sample code is as follows:

$mysqli = new mysqli("localhost", "username", "password", "database");
if ($mysqli->connect_errno) {
    die('Connect Error: ' . $mysqli->connect_errno . ":" . $mysqli->connect_error);
}
Copy after login

Where "localhost" is the host address, "username" and "password" are the username and password of the administrator account, and "database" is the name of the database to be connected.

3.2 Get the status of the current master node

In MySQL, you can get the status of the current master node through the SHOW MASTER STATUS statement. The sample code is as follows:

$sql = "SHOW MASTER STATUS";
$result = $mysqli->query($sql);
if ($result->num_rows == 1) {
    $row = $result->fetch_assoc();
    $file = $row['File'];
    $position = $row['Position'];
}
Copy after login

Among them, $ file and $position respectively save the binary log file name and offset of the current primary node.

3.3 Check the status of the slave node

In MySQL, you can obtain the status of the current slave node through the SHOW SLAVE STATUS statement. The sample code is as follows:

$sql = "SHOW SLAVE STATUS";
$result = $mysqli->query($sql);
if ($result->num_rows == 1) {
    $row = $result->fetch_assoc();
    $seconds_behind_master = $row['Seconds_Behind_Master'];
}
Copy after login

Among them, $seconds_behind_master The data synchronization delay time between the slave node and the master node is saved.

3.4 Determine whether switching is required

After obtaining the status of the master node and slave node, you can determine whether switching is required. Usually, when the master node fails, the status of the slave node will change, and $seconds_behind_master will become NULL or 0.

When it is detected that the master node fails, determine whether the slave node needs to be switched. If the conditions are met, execute the CHANGE MASTER TO statement to switch to the slave node as the master node:

if ($seconds_behind_master === NULL || $seconds_behind_master === 0) {
    $sql = "STOP SLAVE";
    $mysqli->query($sql);

    $sql = "CHANGE MASTER TO MASTER_HOST='hostname',
                       MASTER_USER='username',
                       MASTER_PASSWORD='password',
                       MASTER_LOG_FILE='{$file}',
                       MASTER_LOG_POS={$position}";
    $mysqli->query($sql);

    $sql = "START SLAVE";
    $mysqli->query($sql);
}
Copy after login

Among them, hostname is the slave node. The IP address of the node, username and password are the username and password of the administrator account, $file and $position are the name and offset of the master node binary log file obtained previously.

4. Conclusion

This article introduces how to realize automatic switching of MySQL master-slave replication through PHP program. By running a PHP script, you can automatically detect whether the master node has failed. If it fails, it will automatically switch from the slave node to the master node to ensure the high availability of the database. In practical applications, PHP scripts can be executed regularly to achieve 24-hour automatic monitoring and switching of the database.

The above is the detailed content of How to implement automatic switching of MySQL master-slave replication with PHP. For more information, please follow other related articles on the PHP Chinese website!

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

How to debug CLI mode in PHPStorm? How to debug CLI mode in PHPStorm? Apr 01, 2025 pm 02:57 PM

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

How to send a POST request containing JSON data using PHP's cURL library? How to send a POST request containing JSON data using PHP's cURL library? Apr 01, 2025 pm 03:12 PM

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

See all articles