# Something bad happened again

**URL:** https://community.kinsta.com/t/something-bad-happened-again/6314
**Category:** Bug Reports
**Created:** [May 26, 2026, 2:59pm UTC](https://community.kinsta.com/t/something-bad-happened-again/6314 "2026-05-26T14:59:12Z")
**Posts on this page:** 1
**Showing post:** 32

<div class="post-metadata">

### Author: ![VladimirM](https://sea2.discourse-cdn.com/flex020/user_avatar/community.kinsta.com/vladimirm/32/2786_2.png) [@VladimirM](https://community.kinsta.com/u/VladimirM)
#### Post date: [June 9, 2026, 2:07pm UTC](https://community.kinsta.com/t/something-bad-happened-again/6314/32 "2026-06-09T14:07:33Z")

</div>

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](https://community.kinsta.com/t/something-bad-happened-in-create-new-site/2190/23).

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`:

```auto
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;"`

---

_[View the full topic](https://community.kinsta.com/t/something-bad-happened-again/6314)._
