Does anyone get mysql workbench 5.2 for mast operation?

I can not get workbench 5.2 mysql to work. I have mamp and mamp pro installed and running, and no matter what type of connection I am trying to use, just do not connect. What can I do?

I have a mac with a snow leopard

+3
source share
3 answers

In the MySQL workbench, use the connection method: Local Connection / Pipe and in the Socket / Pipe path setting, enter: /Applications/MAMP/tmp/mysql/mysql.sock, then enter your root username / password.

+8
source

There are two tasks that must be fixed in order to get MySQL Workbench to work with the MAMP installation:

1) Start/Stop/Status MySql :

" MySQL": /Applications/MAMP/bin/startMysql.sh

Stop MySQL:
/Applications/MAMP/bin/startMysql.sh

MySQL: ps xa | grep "/Applications/MAMP/Library/bin/[m]ysqld"

2) my.cnf , :

sudo touch /etc/my.cnf
sudo chown joeb /etc/my.cnf
  • joeb .

, . MAMP, MySQL Workbench, WordPress MAC.

+2

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


All Articles