There is a Java program that, when launched, connects to the database, which is stored in musql workbench. It is necessary to transfer this program to another computer so that there it also connected to the local network, but at the same time to export the database so that it was not necessary to reinstall and configure the workbench.

  • 2
    workbench is just a tool to access the database. It works on its own. And the MySQL server, which is actually the holder of the database itself, also works by itself and does not require the presence of anything else to work. And he absolutely doesn’t need a workbench - Mike
  • Thank you, and you can tell how to create this server, because when exporting a database, it is saved in SQL Text File format - Artem Kosenko
  • 2
    Install the server software itself (the server itself can be downloaded without a workbench), after which you can also start a text dump using the mysql utility. - Mike

0