Hi guys,
I’m just experiencing a very weird behaviour on my Hass docker container.
- Login from web (http://myhass.localdomain:8123) with owner:pwd => doesn’t work (wrong invalid user/password)
- Changing password from another logged in device, repeating step 1 => same result
- Changing password from CLI with
hass --script auth --config /config change_password owner pwd
, repeating step 1 => same result - Changing password from CLI with
hass --script auth --config /config change_password "owner" "pwd"
, repeating step 1 => same result - Checking authentication details in CLI with
hass --script auth --config /config validate owner pwd
andhass --script auth --config /config validate "owner" "pwd"
=>Auth valid
- Checking log with
cat home-assistant.log
directly after step 1 again =>WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from macbookair.lan.k41 (192.168.10.136).
I don’t have ip_ban' enabled and this is my
/configdirectory (so no
ip_bans.yaml`):
drwxr-xr-x 11 1000 1000 4096 Apr 14 18:17 .
drwxr-xr-x 1 root root 4096 Feb 2 2023 ..
-rw-r--r-- 1 1000 1000 8 Feb 2 2023 .HA_VERSION
drwxr-xr-x 2 1000 1000 4096 Jan 28 2022 .cloud
drwx------ 2 1000 1000 4096 Jan 31 2022 .ssh
drwxr-xr-x 2 1000 1000 4096 Apr 14 18:32 .storage
-rw-r--r-- 1 root root 12334 Dec 25 16:17 automations.yaml
drwxr-xr-x 4 1000 1000 4096 Jan 28 2022 blueprints
-rw-r--r-- 1 1000 1000 4203 Feb 4 2023 configuration.yaml
-rw------- 1 root root 3488 Apr 5 2022 configuration.yaml.save
-rw-r--r-- 1 1000 1000 3488 Apr 5 2022 configuration.yaml.save.1
-rw------- 1 1000 1000 4205 Dec 29 2022 configuration.yaml.save.2
-rw-r--r-- 1 1000 1000 4205 Dec 29 2022 configuration.yaml.save.3
-rw------- 1 1000 1000 4196 Apr 12 2023 configuration.yaml.save.4
-rw-r--r-- 1 1000 1000 4196 Apr 12 2023 configuration.yaml.save.5
-rw------- 1 1000 1000 4203 Nov 20 19:20 configuration.yaml.save.6
-rw-r--r-- 1 1000 1000 4203 Nov 20 19:20 configuration.yaml.save.7
drwxr-xr-x 9 1000 1000 4096 Apr 12 2023 custom_components
drwxr-xr-x 2 1000 1000 4096 Jan 28 2022 deps
-rwxr--r-- 1 root root 4288148 Apr 12 2023 go2rtc-1.2.0
-rw-r--r-- 1 1000 1000 0 Jan 28 2022 groups.yaml
-rw-r--r-- 1 root root 63581 Apr 14 18:32 home-assistant.log
-rw-r--r-- 1 root root 115947 Apr 14 18:16 home-assistant.log.1
-rw-r--r-- 1 root root 0 Apr 14 18:16 home-assistant.log.fault
-rw-r--r-- 1 1000 1000 111165440 Apr 14 18:30 home-assistant_v2.db
-rw-r--r-- 1 1000 1000 32768 Apr 14 18:32 home-assistant_v2.db-shm
-rw-r--r-- 1 1000 1000 4157112 Apr 14 18:32 home-assistant_v2.db-wal
drwxr-xr-x 7 root root 4096 Feb 18 2022 image
-rwxr--r-- 1 1000 1000 11599872 Jan 28 2022 rtsp2webrtc_v5_armv7
-rw-r--r-- 1 1000 1000 0 Jan 28 2022 scenes.yaml
-rw-r--r-- 1 root root 396 Dec 23 2022 scripts.yaml
-rw-r--r-- 1 1000 1000 161 Jan 28 2022 secrets.yaml
-rw-r--r-- 1 root root 88981 Mar 25 2022 snapshot.jpeg
drwxr-xr-x 2 1000 1000 4096 Jan 28 2022 tts
drwxr-xr-x 2 1000 1000 4096 Jan 30 2022 www
-rw-r--r-- 1 root root 442368 Apr 14 18:16 zigbee.db
-rw-r--r-- 1 root root 32768 Apr 14 18:31 zigbee.db-shm
-rw-r--r-- 1 root root 156592 Apr 14 18:31 zigbee.db-wal
Fortunately I’m still logged in on another device - but what could be the problem here? Could I be banned due to too many login attempts (although the credentials were actually correct though…)? How can I resolve this problem?