Something bad happened again

Hello @Phease69 :waving_hand: 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.

  1. Stop and remove the DB container:
    docker rm -f devkinsta_db

  2. Remove the DB volume:
    docker volume rm devkinsta_db_data

  3. 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


  1. Verify authentication works:
    docker exec -it devkinsta_db mysql -uroot -p<password> -e "SELECT 1;"