Question
My assumption is MySQL Workbench runs this:
mysql -h localhost -P 3306 -u user -p
How can I make it run this?:
mysqle -h localhost -P 3306 -u user -p
Reason
I am working with a client who runs two instances of MySQL on one server. The command mysql
does not launch MySQL as it normally does. Rather, they use mysqle
and mysqlw
. I believe this is the cause of a MySQL Workbench error when attempting to connect with Standard TCP/IP over SSH:
Lost connection to MySQL server at 'reading initial communication packet', system error: 0
This error has been documented, but I believe is unrelated.