Solution to the failure of MySQL to use innobackupex to backup the connection server

Solution to the failure of MySQL to use innobackupex to backup the connection server

What should I do if MySQL fails to connect to the server using innobackupex to back up?

When using innobackupex to back up, the error message is as follows:
Failed to connect to MySQL server as DBD::mysql module is not installed at - line 1327.

Reason: The Perl-DBD-MySQL interface tool based on Perl is not installed

Solution:

# Is perl-DBD-MySQL installed? # yum list installed | grep perl-DBD-MySQL 
 
# View the required dependency packages of perl-DBD-MySQL# yum deplist perl-DBD-MySQL.x86_64 | grep mysql 
 dependency: libmysqlclient.so.16()(64bit) 
 provider: mysql-libs.x86_64 5.1.71-1.el6 
 dependency: libmysqlclient.so.16(libmysqlclient_16)(64bit) 
 provider: mysql-libs.x86_64 5.1.71-1.el6 
 
# Check whether the dependent package exists or is installed in the system# find / -name libmysqlclient.so.16 
/usr/lib64/mysql/libmysqlclient.so.16 
 
# yum list installed | grep mysql-libs.x86_64 
mysql-libs.x86_64 5.1.71-1.el6 @anaconda-CentOS-201311272149.x86_64/6.5 
 
# Install perl-DBD-MySQL 
# yum install perl-DBD-MySQL.x86_64 
 
# View# yum list installed | grep perl-DBD-MySQL 

Reference: XTRABACKUP COMPLAINS OF MISSING PERL-DBD-MYSQL

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Solution to the problem of mysql service starting but not connecting
  • Detailed explanation of performance monitoring of MySQL server using Prometheus and Grafana
  • Mysql5.7 service cannot be started. Graphical solution tutorial
  • Solution to the problem that the service name is invalid when running mysql net start
  • MySQL uses show status to view MySQL server status information
  • The best way to automatically backup the mysql database (windows server)
  • How to view the path of the MySQL configuration file on the Linux server
  • Solution to MySql service disappearance for unknown reasons

<<:  Comprehensive analysis of prototypes, prototype objects, and prototype chains in js

>>:  How to redirect to https through nginx load balancing

Recommend

Let's learn about the MySQL storage engine

Table of contents Preface 1. MySQL main storage e...

Vue Element-ui implements tree control node adding icon detailed explanation

Table of contents 1. Rendering 2. Bind data and a...

Is the tag li a block-level element?

Why can it set the height, but unlike elements lik...

How to use Nginx to solve front-end cross-domain problems

Preface When developing static pages, such as Vue...

37 Tips for a Good User Interface Design (with Pictures)

1. Try to use single column instead of multi-colum...

Detailed example of using case statement in MySQL stored procedure

This article uses an example to illustrate the us...

jQuery canvas draws picture verification code example

This article example shares the specific code of ...

How to solve the problem of ERROR 2003 (HY000) when starting mysql

1. Problem Description When starting MYSQL, a pro...

Hexadecimal color codes (full)

Red and pink, and their hexadecimal codes. #99003...

How to install and deploy gitlab server on centos7

I am using centos 7 64bit system here. I have tri...

Detailed usage of Vue more filter widget

This article example shares the implementation me...

Notes on the MySQL database backup process

Today I looked at some things related to data bac...

RGBA alpha transparency conversion calculation table

Conversion between rgba and filter values ​​under...

Vue installation and use

Table of contents 1. Vue installation Method 1: C...