Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to connect Sequel Pro with Laradock

I can not connect my Laradock docker with Sequel Pro.

In my .env file

### MYSQL
MYSQL_VERSION=8.0
MYSQL_DATABASE=default, athsurvey
MYSQL_USER=homestead
MYSQL_PASSWORD=secret
MYSQL_PORT=3306
MYSQL_ROOT_PASSWORD=root
MYSQL_ENTRYPOINT_INITDB=./mysql/docker-entrypoint-initdb.d

And in my Sequel Pro interface, I put :

host: 127.0.0.1
user: homestead
pass: secret

But it does not work. Do you have an idea of how to make my connection successful? It should be simple ...

thank you very much!

like image 853
Jeremy Avatar asked Oct 28 '22 17:10

Jeremy


1 Answers

There's a known issue currently with Sequel Pro connecting to MySQL 8 that's still unfixed yet, reference: https://github.com/sequelpro/sequelpro/issues/2699

Also TablePlus has similar issue (despite it's said to be working), reference: https://twitter.com/Omranic/status/1011385798820859904

Currently I'd advice using either command line, or Jetbrain's DataGrip which works fine with MySQL 8, or as a final option if you don't mind which version of MySQL and you're developing locally, you can downgrade to v5.7 until these GUI tools are being fixed and be ready. Hope this helps..

like image 118
Omranic Avatar answered Nov 01 '22 10:11

Omranic