Sequel Pro and MySQL connection failed

后端 未结 7 1498
青春惊慌失措
青春惊慌失措 2020-12-04 06:02

I just installed mysql on mac from Homebrew

brew install mysql

mysql -V

mysql  Ver 8.0.11 for osx10.13 on x86_64 (Homebrew)

from termina

7条回答
  •  北海茫月
    2020-12-04 06:41

    If you connect to MySQL via root@127.0.0.1, make sure that you reset its password too!

    ALTER USER 'root'@'127.0.0.1' IDENTIFIED WITH mysql_native_password BY '[password]';

提交回复
热议问题