Unable to find /usr/bin/mysqldump to create mysql backup

Active8

Verified User
Joined
Jul 13, 2013
Messages
1,771
After upgrading from mysql 5.6.8 to mariadb 10 i get this error when backup by DA: Unable to find /usr/bin/mysqldump to create mysql backup

please help
 
Are you able to locate mysqldump using below commands?

# updatedb
# locate mysqldump
 
Hi already done that but no luck , the whole file isnt there only mysqldumbslow file is there

UPDATE:
Fixed by my self by upgrading to MariaDB 10.1 maybe useful for others
 
Last edited:
The binary /usr/bin/mysqldump goes with MariaDB-client rpm-package. You probably used to be missing it. So you could check it with:

Code:
rpm -qa | grep -i MariaDB
 
Do you mean MySQL 5, or PHP 5? I've recently done the same: moved accounts from CentOS 3 (PHP4, MySQL4) into CentOS 5 (PHP5.2, MySQL 5.1), none issue has come with importing MySQL DBs.

Did you try to get mysqldump from a RPM, taken from here http://files.directadmin.com/services/es_3.0/ ?

If you want I can send you one:

HTML:
# /usr/bin/mysqldump -V
/usr/bin/mysqldump Ver 9.10 Distrib 4.0.17, for pc-linux (i686)
coming together with

HTML:
# mysqld --version
mysqld Ver 4.0.17-standard for pc-linux on i686 (Official MySQL RPM)

source: https://sorcev.com
 
Back
Top