29

I am new to using MySQL and I needed to download it for school, however, I keep getting this error message (picture below). I am using xampp and connecting using the username root. the port also matches what it is telling me. It will let me proceed but a lot of the features are missing. Any help at all would be appreciated.

Incompatible/nonstandard server version or connection protocol detected (10.0.10).

A connection to this database can be established but some MySQL Workbench features may not work properly since the database is not fully compatible with the supported versions of MySQL.

MySQL Workbench is developed and tested for MySQL Server versions 5.1, 5.5, 5.6 and 5.7

PICTURE HERE

GordonM
  • 29,211
  • 15
  • 77
  • 126
D. Coop
  • 311
  • 1
  • 3
  • 4

8 Answers8

40

As I can see, You are using latest XAMPP.

All you need to do is, after opening MySQL Workbench, and instead of setting up a new connection, Press CTRL+R or click on DATABASE tab in the top menu. Select Reverse Engineer and provide necessary information. You are good to go now.

The MySql workbench wont crash or show any compatibility issue now.

Azzabi Haythem
  • 2,056
  • 6
  • 21
  • 27
Ankit Pandey
  • 1,268
  • 1
  • 17
  • 20
  • 1
    I did it but still have the same message Incompatible/nonstandard server version or connection protocol detected (10.3.12). A connection to this database can be established but some MySQL Workbench features may not work properly since the database is not fully compatible with the supported versions of MySQL. MySQL Workbench is developed and tested for MySQL Server versions 5.1, 5.5, 5.6 and 5.7 – Fouad Djebbar Jan 24 '19 at 16:41
  • which web server uses mysql then. I am on ubuntu – mr.loop May 02 '21 at 21:23
16

The current version of XAMPP uses MariaDB instead of MySQL.

Because MySQL Workbench is designed to work with MySQL and not with the very similar drop in replacement MariaDB, you are gonna have problems ...

So, if you want to use MySQL Workbench with XAMPP then a solution would be to try installing the last version of XAMPP that uses MySQL. That version is probably 1.8.3 from (August of 2014?). You can download it here:

XAMPP Sourceforge old versions

Community
  • 1
  • 1
C0MPU7ER
  • 324
  • 2
  • 7
  • 3
    when you say "you are gonna have problems", do you have a source? According to another (more complete) stack exchange answer, "In most cases, it can be safely ignored." http://unix.stackexchange.com/questions/252275/mysql-workbench-warning-when-connecting-to-mariadb – Patrick Aug 15 '16 at 05:04
  • 1
    Well Patrick, I suppose I could have been slightly more precise and said "you may have problems", but I was linking to an Oracle Team Leader comment: "Ah right, MySQL Workbench really only supports MySQL. In the next version this will be shown more prominently. – Mike Lischke Nov 27 '15 at 8:13" I was also coming off having to troubleshoot why I couldn't connect, so personal experience too. The problem I ran into wasn't that I could connect and then there where edge cases where it didn't work, it was that I couldn't connect at all. – C0MPU7ER Aug 17 '16 at 21:36
  • @Patrick - My xampp installation has mysql and I still get this error. The mysql windows installer does not let me install another mysql. How do i make this work ? – MasterJoe Jan 19 '17 at 23:52
  • This is the same thing as saying you shouldn't use LibreOffice to edit MS Word docs. If the tool is compatible 99% of the time then it shouldn't care about branding. – ekeyser Mar 27 '19 at 16:10
  • I have ran into a problem using workbench with MariaDB which you can check out [here.](https://stackoverflow.com/questions/53160181/error-code-1064-in-workbench-8-0-from-forward-engineered-eerd) – Tom Dec 18 '19 at 15:48
10

If you are using the latest XAMPP that uses MariaDB, in that case in your MySQL Workbench don't use 'Connect to Database' instead use 'Reverse Engineer' and provide the necessary credentials. That's all, No hassle.

JiNexus
  • 2,359
  • 1
  • 16
  • 17
4

I encounter the same message followed by a crash of MySQL Workbench, with version 6.3.7 (build 1199).

I didn't find a solution, but here is a work-around:

Once you press the button Continue anyway, just open a database use toto, and then wait a bit (a minute is enough in my case), and then you can call a query without a crash. I found this trick here.

w5m
  • 2,259
  • 3
  • 29
  • 42
JPBlanc
  • 63,198
  • 12
  • 118
  • 155
  • please mention the workaround instead of posting the link. your answer will not be useful once the link is dead. – MasterJoe Jan 19 '17 at 23:49
  • 3
    Do you read the answer ? that's what I did. I mention the workarround before giving the link ! – JPBlanc Jan 20 '17 at 04:50
1

I experimented the same with WAMP 3.2.0.

MariaDB was configured to listen to port 3306 (the usal MySQL port) and MySQL 8 was listening on port 3308. If you are in this case, don't be fooled by the fact you have 2 DBs.

To solve this, you have to choose the DB you want. I wanted MySQL and I just ask MySQLWorkBench to open a connection on port 3308 to MySQL.

Orden
  • 441
  • 2
  • 11
0

You can ditch MySQL Workbench, and use the browser made for the MariaDB, they have a free version here: https://www.upscene.com/downloads/dbw

It's limited in its abilities, but I had no troubles connecting and browsing.

Odysseus Ithaca
  • 2,217
  • 1
  • 16
  • 20
0

I had the similar problem because i was using Denwer at the same time. To solve the problem:

  1. Stop Denwer
  2. Restart MySQL server
  3. Profit! Now you can open your database in the Workbench

The idea is that denwer was starting its local server which didnt allow MySQL to start normally.

If you want to use denwer at the same time wth MySQL you can just start it after MySQL (Point 4).

Xon Ion
  • 1
  • 1
0

In my case I already had MySql server and workbench installed and setup prior to my XAMPP installation. I wanted to continue with my existing setup.

I also installed MySql server with my XAMPP. I started mysql inside XAMPP and when I connected to MySql Workbench, I encountered the same error. Because Workbench was trying to connect with the server which was installed with XAMPP, apparently this was incompatible.

So I stopped mysql in XAMPP and started started mysql server manually(the previous setup and installed server).

Refer this to know how to start mysql manually in windows.

You can also config XAMPP to use your existing SqlServer.

Aswin ADZ
  • 1
  • 1