Error : dbeaver utility 'mysql.exe' not found in client home 'mysql binaries'
Asked Answered
T

4

21

When I try to import an SQL file and execute it using dbeaver software, it prompts the following error: enter image description here
I have already installed XAMPP on PC.

Thorlie answered 7/9, 2020 at 15:7 Comment(0)
C
47

You have here two possibilities.

First copy mysql.exe and mysqldump.exe into the dbeaver folder

or you change the Local Client the location in the c0onnection wizard

enter image description here

Cruikshank answered 7/9, 2020 at 16:36 Comment(1)
to open this connection settings: right click on the connection and select edit connectionJipijapa
W
3

I changed Local Client to 5.27 and it worked for me.

Wrapped answered 31/3, 2022 at 5:55 Comment(0)
G
2

I encountered this one and what worked for me is that I installed/reinstalled mysql client via

brew install mysql-client

After that, find the mysqldump exe in my local machine using this code

find / -name "mysqldump" 2>/dev/null

And then a list of paths will be displayed,just like this

/System/Volumes/Data/Applications/XAMPP/xamppfiles/bin/mysqldump
/System/Volumes/Data/opt/homebrew/bin/mysqldump
/System/Volumes/Data/opt/homebrew/Cellar/mysql-client/8.2.0/bin/mysqldump
/System/Volumes/Data/opt/homebrew/Cellar/mysql/8.2.0_1/bin/mysqldump

Copy the path of mysqldump, in my case I copied

/System/Volumes/Data/opt/homebrew/Cellar/mysql-client/8.2.0/bin/mysqldump

And remove the 'bin/mysqldump' from the end

/System/Volumes/Data/opt/homebrew/Cellar/mysql-client/8.2.0/

And paste it to the dbeaver local path.

PS. This is for MacOS.

Gyrostatic answered 9/1, 2024 at 3:6 Comment(0)
W
1

if you encounter this issue on MacOS,(especially after system update), the mysql client can be removed from the system, so just run. I don't know why after sytem update, many dependencies are missing from brew. [Sonoma] related.

brew install mysql
Waterway answered 30/7, 2024 at 14:9 Comment(0)

© 2022 - 2025 — McMap. All rights reserved.