Is MySQL Workbench required for the server to work?

I need to solve a problem connecting to the database.

I checked the ip address and port, but my host computer does not allow the connection.

Do I need to own a server to use MySQL Workbench?

+3
source share
1 answer

MySQL Workbench connects to an instance of MySQL Server. However, you can install MySQL Server on your computer. Server and client can coexist on the same computer.

You can download the latest open source MySQL server (currently version 5.1.50):

+6
source

Source: https://habr.com/ru/post/1760945/


All Articles