#d-bus error docker

1 messages · Page 1 of 1 (latest)

drifting echo
#

Hello. I'm using Home Assistant through the docker-comose.yml. So i'm checking the logs here and it seems like i'm running into an issue with d-bus.

Docker Compose:

  homeassistant:
    container_name: homeassistant
    image: ghcr.io/home-assistant/home-assistant:stable
    volumes:
      - ./config:/config
      - /etc/localtime:/etc/localtime:ro
      - /run/dbus:/run/dbus:ro
    restart: unless-stopped
    ports:
      - 8123:8123 # Change ports to expose explicitly
    environment:
      TZ: Europe/Stockholm

configuration.yml:

# Loads default set of integrations. Do not remove.
default_config:

http:
  use_x_forwarded_for: true
  trusted_proxies:
    - 192.168.1.177
    - 172.27.0.1

# Load frontend themes from the themes folder
frontend:
  themes: !include_dir_merge_named themes

automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml

logs:

homeassistant  | s6-rc: info: service s6rc-oneshot-runner: starting
homeassistant  | s6-rc: info: service s6rc-oneshot-runner successfully started
homeassistant  | s6-rc: info: service fix-attrs: starting
homeassistant  | s6-rc: info: service fix-attrs successfully started
homeassistant  | s6-rc: info: service legacy-cont-init: starting
homeassistant  | s6-rc: info: service legacy-cont-init successfully started
homeassistant  | s6-rc: info: service legacy-services: starting
homeassistant  | services-up: info: copying legacy longrun home-assistant (no readiness notification)
homeassistant  | s6-rc: info: service legacy-services successfully started
homeassistant  | 2026-02-27 16:38:29.637 WARNING (MainThread) [dbus_fast.message_bus] could not shut down socket
homeassistant  | Traceback (most recent call last):
homeassistant  |   File "src/dbus_fast/message_bus.py", line 532, in dbus_fast.message_bus.BaseMessageBus.disconnect
homeassistant  | OSError: [Errno 9] Bad file descriptor
homeassistant  | 2026-02-27 16:39:35.294 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from 172.16.3.1 (172.16.3.1). Requested URL: '/api/websocket'. (Mozilla/5.0 (X11; Linux x86_64; rv:148.0) Gecko/20100101 Firefox/148.0)
homeassistant  | 2026-02-27 16:39:35.477 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from 172.16.3.1 (172.16.3.1). Requested URL: '/api/websocket'. (Mozilla/5.0 (X11; Linux x86_64; rv:148.0) Gecko/20100101 Firefox/148.0)```