Gandalf The White
Gandalf The White

Reputation: 43

Workbench did not install Mysql in services. Should I do it manually? How?

I just installed mysql workbench CE 5.2. I tried to create and open a connection and it said "Can't Connect to MYSQL server on '127.0.0.1' (10061)"

I looked around the answers on stackoverflow. Eventually I found my way on services. I saw that Mysql was not there.

dev.mysql.com says that I should install it with "mysqld" but it's not found inside the workbench installer.

What should I do? If there is a way please tell it step by step.

Thank you!

Upvotes: 4

Views: 17587

Answers (2)

Mike Lischke
Mike Lischke

Reputation: 53345

There's a MySQL Installer for Windows which does install everything you need in this regard. Including several different server version, connectors, tools like Workbench and more. This installer should be your first attempt.

Of course you can also install the server separately. Download the msi and run the installer. Make sure you name your service properly. mysqld is usually not a name we use on Windows for a service. I recommend something like MySQL56 (for a 5.6 server).

Upvotes: 1

Ed Heal
Ed Heal

Reputation: 59997

Have you installed MySql server on the local machine? Workbench is just a GUI program to make it easier to access a database - be it on you local machine or a remote machine.

Just install mysql on your local machine. See http://dev.mysql.com/downloads/

Upvotes: 3

Related Questions