user997112
user997112

Reputation: 30615

Does MySQLWorkbench include MySQL server?

My aim is to create some simple tables in MySQL via a GUI similar to SQL Server Management Studio. In order to do this I found and installed MySQL Workbench.

I am following this tutorial:

http://dev.mysql.com/doc/workbench/en/wb-getting-started-tutorial-admin.html

but on step 5 I get an error message saying cannot connect to MySQL server.

Am I supposed to have something else installed before I can use MySQL Workbench? I have assumed Workbench includes everything I need....

Upvotes: 7

Views: 16132

Answers (2)

pramod pandey
pramod pandey

Reputation: 21

You will need a server. SO you can goto start->mysql folder->mysql Installer. After that a Mysql Installer form will open. Click on ADD. You will see a list of products. Select Server(x86 or x64) based on your machine and follow instructions provided.Once you have downloaded, set admin password. Now you can create your instance in workbench. If server is not running, run services.msc and start MySQL service.

Upvotes: 2

John Conde
John Conde

Reputation: 219804

You will need to install MySQL yourself. You can download it individually or using a tool like WAMPserver which makes the process of installing and configuring ridiculously easy.

Upvotes: 6

Related Questions