MySQL Workbench Does Not Start

3

I have worked daily on mysql workbench. It turns out that out of nowhere, the tool has stopped working. I carry the icon and nothing happens. I have already tried restarting the computer as well as restarting the "MySQL56" service but no effect.

I have been querying the wb file in "C: \ Users \ Pedro \ AppData \ Roaming \ MySQL \ Workbench \ log \ wb" and have the following error: "Workbench: Console redirection failed.

Does anyone know how I can solve this?

    
asked by anonymous 22.09.2015 / 14:23

1 answer

4

How to find and report bugs in MySQL Workbench:

# Microsoft Windows
shell> cd "C:\Program Files (x86)\MySQL\MySQL Workbench CE 6.3.4\"
shell> MySQLWorkbench.exe -log-level=debug3

# OS X
shell> cd /Applications
shell> MySQLWorkbench --log-level=debug3

# Linux (Ubuntu)
shell> cd /usr/bin
shell> mysqlworkbench --log-level=debug3

Log creation directories:

Windows 7:

C:\Users\[user]\AppData\Roaming\MySQL\Workbench\log

OSX: 

~/Library/Application Support/MySQL/Workbench/logs

Linux: 

~/.mysql/workbench/logs

Reference:

link

    
22.09.2015 / 14:33