简体   繁体   中英

How to update mysqldump.exe in mysql workbench

我想导出我的数据库,但我在导出过程中遇到的问题是 mysql.exe 版本 8.0.13,但是要转储的 MySQL 服务器的版本为 5.7.22,因为 musql 转储的版本与服务器不同

You don't replace the binary bundled with MySQL Workbench, but instead set the path to it in the preferences (I think the error message that comes up for the mismatch even says so):

在此处输入图像描述

If you want to backup your database quickly then use phpmyadmin to get a quick dump of your existing database

On your browser go to http://localhost/phpmyadmin/

Update password (im using xampp and I didnt confirm it on Wampp or Lampp versions) Go to your xampp control panel installed on your machine and look for Apache "Config" tab, click it and look for

phpmyadmin(config.inc.php) 

click it and it opens config file. Look for

$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';

Type correct password for login to mysql then Refresh the web browser to http://localhost/phpmyadmin/. Follow quick steps on the image

# 3个步骤备份你的mysql数据库

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM