docksal / addons

Community driven, submit your addon! Docksal addons that can be installed via `fin addon install` command.
MIT License
16 stars 34 forks source link

pma does not work with MySQL 8.0 images #66

Open ChristianAdamski opened 4 years ago

ChristianAdamski commented 4 years ago

DB_IMAGE="docksal/mysql:8.0-edge"

leads to

mysqli_real_connect(): The server requested authentication method unknown to the client [caching_sha2_password]

achekulaev commented 4 years ago

I would recommend you to ping addon contributors @frederickjh and @sean-e-dietrich

lmakarov commented 4 years ago

I've just tested this and had no issues using DB_IMAGE='docksal/mysql:8.0-edge'.

@ChristianAdamski make sure you have the latest version of the edge image:

$ fin docker pull docksal/mysql:8.0-edge
8.0-edge: Pulling from docksal/mysql
Digest: sha256:191b916a2383c3c7d159213132f224cbf6bf122c78d03e9963632ddd5d1b124d
Status: Image is up to date for docksal/mysql:8.0-edge
docker.io/docksal/mysql:8.0-edge
lmakarov commented 4 years ago

image

lmakarov commented 4 years ago

You may also need to pull in the latest phpmyadmin image:

$ fin docker pull phpmyadmin/phpmyadmin
Using default tag: latest
latest: Pulling from phpmyadmin/phpmyadmin
Digest: sha256:09b0dcdf1fa45538fbe8966a025b14f0eb74d0f79cc4b5784ec372e3908e7ee1
Status: Image is up to date for phpmyadmin/phpmyadmin:latest
docker.io/phpmyadmin/phpmyadmin:latest

Let us know which one worked for you.