Hello @Phease69
I’m sorry to hear this still persists. I do notice that the error has code 1044, instead of 1045 we usually see but it’s the same output - the access is denied to superadmin user for some reason.
Please test a different solution posted here.
-
Stop and remove the DB container:
docker rm -f devkinsta_db -
Remove the DB volume:
docker volume rm devkinsta_db_data -
Recreate the DB container using the password shown in
docker inspect:
docker run -d --name devkinsta_db \
--network devkinsta_network \
-e MARIADB_ROOT_PASSWORD=<password from inspect> \
-v devkinsta_db_data:/var/lib/mysql \
kinsta/devkinsta_db:1.3.6
- Verify authentication works:
docker exec -it devkinsta_db mysql -uroot -p<password> -e "SELECT 1;"