My home assistant suddenly only responds on port 22

Something happened, maybe an update, but I just found that my home assistant only responds on port 22 at ip address 10.0.0.16. 8123 is nothing. My system runs on a proxmox vm and has done so for years. I did update recently but it continued working normally after the update - until now…

Not sure what to check or what to do here? Help would really be appreciate! Thanks

[core-ssh ~]$ ha info
arch: amd64
channel: stable
docker: 23.0.3
features:
- reboot
- shutdown
- services
- network
- hostname
- timedate
- os_agent
- haos
- resolved
- journal
- disk
hassos: "10.1"
homeassistant: 2023.5.3
hostname: homeassistant
logging: info
machine: qemux86-64
operating_system: Home Assistant OS 10.1
state: running
supervisor: 2023.04.1
supported: true
supported_arch:
- amd64
- i386
timezone: Europe/Paris
[core-ssh ~]$ ha host info
agent_version: 1.5.1
apparmor_version: 3.1.2
boot_timestamp: 1685249264251776
broadcast_llmnr: true
broadcast_mdns: true
chassis: vm
cpe: cpe:2.3:o:home-assistant:haos:10.1:*:production:*:*:*:ova:*
deployment: production
disk_free: 22.4
disk_life_time: null
disk_total: 30.8
disk_used: 7.1
dt_synchronized: true
dt_utc: "2023-05-28T04:48:43.496868+00:00"
features:
- reboot
- shutdown
- services
- network
- hostname
- timedate
- os_agent
- haos
- resolved
- journal
- disk
hostname: homeassistant
kernel: 6.1.25
llmnr_hostname: homeassistant
operating_system: Home Assistant OS 10.1
startup_time: 1.937881
timezone: Etc/UTC
use_ntp: true
[core-ssh ~]$ ha dns info
fallback: true
host: 172.30.32.3
llmnr: true
locals:
- dns://10.0.0.1
mdns: true
servers: []
update_available: false
version: 2022.04.1
version_latest: 2022.04.1
[core-ssh ~]$ ha resolution info
checks:
- enabled: true
  slug: backups
- enabled: true
  slug: core_security
- enabled: true
  slug: multiple_data_disks
- enabled: true
  slug: supervisor_trust
- enabled: true
  slug: network_interface_ipv4
- enabled: true
  slug: addon_pwned
- enabled: true
  slug: dns_server
- enabled: true
  slug: dns_server_ipv6
- enabled: true
  slug: free_space
issues:
- context: system
  reference: null
  type: no_current_backup
  uuid: 5f248c9f2d784224a0ca0f330cc8f03d
suggestions:
- auto: false
  context: system
  reference: null
  type: create_full_backup
  uuid: 341512681ca7490896b9663d8954c223
unhealthy: []
unsupported: []
[core-ssh ~]$ df -h ./
Filesystem                Size      Used Available Use% Mounted on
overlay                  30.8G      7.1G     22.4G  24% /
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 0.0.0.0:8099            0.0.0.0:*               LISTEN      146/ttyd
tcp        0      0 127.0.0.11:37623        0.0.0.0:*               LISTEN      -
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      149/sshd -D -e [lis
tcp        0      0 :::22                   :::*                    LISTEN      149/sshd -D -e [lis
udp        0      0 127.0.0.11:45489        0.0.0.0:*                           -
[core-ssh etc]$ ps aux
PID   USER     TIME  COMMAND
    1 root      0:00 /package/admin/s6/command/s6-svscan -d4 -- /run/service
   15 root      0:00 s6-supervise s6-linux-init-shutdownd
   17 root      0:00 /package/admin/s6-linux-init/command/s6-linux-init-shutdownd -c /run/s6/basedir -g 3000 -C -B
   24 root      0:00 s6-supervise s6rc-fdholder
   25 root      0:00 s6-supervise s6rc-oneshot-runner
   33 root      0:00 /package/admin/s6/command/s6-ipcserverd -1 -- /package/admin/s6/command/s6-ipcserver-access -v0 -E -l0 -i data/rules -- /package/admin/s6/command/s6-sudod -t 30000 -- /package/admin/s6-rc/command/s6-rc-oneshot-run -l ../..
  143 root      0:00 s6-supervise ttyd
  144 root      0:00 s6-supervise sshd
  146 root      0:00 ttyd -p 8099 tmux -u new -A -s homeassistant bash -l
  149 root      0:00 sshd: /usr/sbin/sshd -D -e [listener] 0 of 10-100 startups
  182 root      0:00 sshd: root@pts/0
  184 root      0:00 -bash
  204 root      0:00 -bash
  279 root      0:00 ps aux

Check if accidentally the Proxmox firewall has been activated blocking access to port 8123.

Thanks for the suggestion. Firewall is disabled in proxmox. I don’t seen anything in my pfsense firewall and I haven’t changed anything lately

To test I suggest you temporarily deactivate pfsense. If you use subnetting you will have to get your PC on the same subnet as HA.

Can you provide: ha net info

PC is on same subnet as HA and firewall rules are open on that subnet.

Can you tell me which service is supposed to listen on 8123? Are there processes missing from my ps? It feels to me like a service is not loading… Is that wrong?

[core-ssh ~]$ ha net info
docker:
  address: 172.30.32.0/23
  dns: 172.30.32.3
  gateway: 172.30.32.1
  interface: hassio
host_internet: true
interfaces:
- connected: true
  enabled: true
  interface: enp0s18
  ipv4:
    address:
    - 10.0.0.16/24
    gateway: 10.0.0.1
    method: auto
    nameservers:
    - 10.0.0.1
    ready: true
  ipv6:
    address:
    - fdcc:5087:ee59:44a7:a764:fe4b:5cc6:9369/64
    - fe80::cb84:1f9e:e465:7e39/64
    gateway: null
    method: auto
    nameservers: []
    ready: true
  primary: true
  type: ethernet
  vlan: null
  wifi: null
supervisor_internet: true

HA core is the service listening to 8123. You can specify the listening port in configuration.yaml:

http:
  server_port: 8123

I forgot to ask if you can ping your HA instance on 10.0.0.16. If you cannot ping, issue is network related (you said you can access HA on port 22, but just double checking if this statement is accurate).

A # ps aux should generate several pages of process information; you have listed only a handful; is this your entire process tree?

Also shutdown the VM and make a copy. Then start the copied VM. Problem persists?

Try 10.0.0.16:4357

That is my entire process tree. So there is a lot missing, evidently. Total shutdown of the VM and starting again has the same problem persist.

❯ ping 10.0.0.16
PING 10.0.0.16 (10.0.0.16): 56 data bytes
64 bytes from 10.0.0.16: icmp_seq=0 ttl=64 time=1.392 ms
64 bytes from 10.0.0.16: icmp_seq=1 ttl=64 time=0.554 ms
^C
--- 10.0.0.16 ping statistics ---
2 packets transmitted, 2 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 0.554/0.973/1.392/0.419 ms

http://10.0.0.16:4357 responds with

Home Assistant observer

Supervisor:	Connected
Supported:	Supported
Healthy:	Healthy

In dmesg I see this kind of thing:

[   20.134940] Initializing XFRM netlink socket
[   21.297825] hassio: port 1(veth9099e2c) entered blocking state
[   21.297829] hassio: port 1(veth9099e2c) entered disabled state
[   21.297907] device veth9099e2c entered promiscuous mode
[   21.301791] hassio: port 1(veth9099e2c) entered blocking state
[   21.301795] hassio: port 1(veth9099e2c) entered forwarding state
[   21.301889] hassio: port 1(veth9099e2c) entered disabled state
[   22.458885] eth0: renamed from veth665ea4c
[   22.465346] IPv6: ADDRCONF(NETDEV_CHANGE): veth9099e2c: link becomes ready
[   22.465380] hassio: port 1(veth9099e2c) entered blocking state
[   22.465382] hassio: port 1(veth9099e2c) entered forwarding state
[   22.465421] IPv6: ADDRCONF(NETDEV_CHANGE): hassio: link becomes ready
[   24.107937] docker0: port 1(vethebbe827) entered blocking state
[   24.107942] docker0: port 1(vethebbe827) entered disabled state
[   24.107989] device vethebbe827 entered promiscuous mode
[   24.304772] hassio: port 2(veth39cc53a) entered blocking state
[   24.304777] hassio: port 2(veth39cc53a) entered disabled state
[   24.304833] device veth39cc53a entered promiscuous mode
[   24.304926] hassio: port 2(veth39cc53a) entered blocking state
[   24.304928] hassio: port 2(veth39cc53a) entered forwarding state
[   24.781621] eth0: renamed from veth590981c
[   24.787519] hassio: port 2(veth39cc53a) entered disabled state
[   24.787563] IPv6: ADDRCONF(NETDEV_CHANGE): vethebbe827: link becomes ready
[   24.787579] docker0: port 1(vethebbe827) entered blocking state
[   24.787581] docker0: port 1(vethebbe827) entered forwarding state
[   24.787609] IPv6: ADDRCONF(NETDEV_CHANGE): docker0: link becomes ready
[   24.898518] eth1: renamed from vethbd2fad2
[   24.907239] IPv6: ADDRCONF(NETDEV_CHANGE): veth39cc53a: link becomes ready
[   24.907264] hassio: port 2(veth39cc53a) entered blocking state
[   24.907266] hassio: port 2(veth39cc53a) entered forwarding state

This is interesting:

[core-ssh config]$ cat home-assistant.log
2023-05-28 06:48:21.353 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration meross_lan which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2023-05-28 06:48:21.384 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration meross_cloud which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2023-05-28 06:48:21.417 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration hacs which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2023-05-28 06:48:21.440 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration kodak_smart_home which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2023-05-28 06:48:21.461 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration watchman which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2023-05-28 06:48:21.515 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration libratone_zipp which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2023-05-28 06:48:25.370 ERROR (MainThread) [homeassistant.config] Invalid config for [http]: [webhook] is an invalid option for [http]. Check: http->http->webhook. (See /config/configuration.yaml, line 5). Please check the docs at https://www.home-assistant.io/integrations/http
2023-05-28 06:48:25.475 ERROR (MainThread) [homeassistant.setup] Setup failed for http: Invalid config.
2023-05-28 06:48:25.477 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of api. Setup failed for dependencies: http
2023-05-28 06:48:25.477 ERROR (MainThread) [homeassistant.setup] Setup failed for api: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:25.478 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of auth. Setup failed for dependencies: http
2023-05-28 06:48:25.478 ERROR (MainThread) [homeassistant.setup] Setup failed for auth: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:25.478 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of config. Setup failed for dependencies: http
2023-05-28 06:48:25.478 ERROR (MainThread) [homeassistant.setup] Setup failed for config: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:25.479 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of diagnostics. Setup failed for dependencies: http
2023-05-28 06:48:25.479 ERROR (MainThread) [homeassistant.setup] Setup failed for diagnostics: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:25.479 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of file_upload. Setup failed for dependencies: http
2023-05-28 06:48:25.479 ERROR (MainThread) [homeassistant.setup] Setup failed for file_upload: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:25.480 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of repairs. Setup failed for dependencies: http
2023-05-28 06:48:25.481 ERROR (MainThread) [homeassistant.setup] Setup failed for repairs: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:25.482 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of websocket_api. Setup failed for dependencies: http
2023-05-28 06:48:25.482 ERROR (MainThread) [homeassistant.setup] Setup failed for websocket_api: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:25.483 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of image_upload. Setup failed for dependencies: http
2023-05-28 06:48:25.483 ERROR (MainThread) [homeassistant.setup] Setup failed for image_upload: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:25.483 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of search. Setup failed for dependencies: websocket_api
2023-05-28 06:48:25.484 ERROR (MainThread) [homeassistant.setup] Setup failed for search: (DependencyError(...), 'Could not setup dependencies: websocket_api')
2023-05-28 06:48:25.484 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of analytics. Setup failed for dependencies: api, websocket_api
2023-05-28 06:48:25.486 ERROR (MainThread) [homeassistant.setup] Setup failed for analytics: (DependencyError(...), 'Could not setup dependencies: api, websocket_api')
2023-05-28 06:48:25.487 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of person. Setup failed for dependencies: image_upload
2023-05-28 06:48:25.487 ERROR (MainThread) [homeassistant.setup] Setup failed for person: (DependencyError(...), 'Could not setup dependencies: image_upload')
2023-05-28 06:48:25.488 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of onboarding. Setup failed for dependencies: analytics, auth, http, person
2023-05-28 06:48:25.488 ERROR (MainThread) [homeassistant.setup] Setup failed for onboarding: (DependencyError(...), 'Could not setup dependencies: analytics, auth, http, person')
2023-05-28 06:48:25.489 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of frontend. Setup failed for dependencies: api, auth, config, diagnostics, file_upload, http, onboarding, repairs, search, websocket_api
2023-05-28 06:48:25.489 ERROR (MainThread) [homeassistant.setup] Setup failed for frontend: (DependencyError(...), 'Could not setup dependencies: api, auth, config, diagnostics, file_upload, http, onboarding, repairs, search, websocket_api')
2023-05-28 06:48:28.868 WARNING (Recorder) [homeassistant.components.recorder.util] The system could not validate that the sqlite3 database at //config/home-assistant_v2.db was shutdown cleanly
2023-05-28 06:48:29.001 WARNING (Recorder) [homeassistant.components.recorder.util] Ended unfinished session (id=106 from 2023-05-27 20:41:56.429763)
2023-05-28 06:48:29.077 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of webhook. Setup failed for dependencies: http
2023-05-28 06:48:29.078 ERROR (MainThread) [homeassistant.setup] Setup failed for webhook: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:29.078 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of hassio. Setup failed for dependencies: http
2023-05-28 06:48:29.078 ERROR (MainThread) [homeassistant.setup] Setup failed for hassio: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:29.079 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of usb. Setup failed for dependencies: websocket_api
2023-05-28 06:48:29.079 ERROR (MainThread) [homeassistant.setup] Setup failed for usb: (DependencyError(...), 'Could not setup dependencies: websocket_api')
2023-05-28 06:48:29.079 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of network. Setup failed for dependencies: websocket_api
2023-05-28 06:48:29.080 ERROR (MainThread) [homeassistant.setup] Setup failed for network: (DependencyError(...), 'Could not setup dependencies: websocket_api')
2023-05-28 06:48:29.714 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of cloud. Setup failed for dependencies: http, webhook
2023-05-28 06:48:29.715 ERROR (MainThread) [homeassistant.setup] Setup failed for cloud: (DependencyError(...), 'Could not setup dependencies: http, webhook')
2023-05-28 06:48:29.716 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of zeroconf. Setup failed for dependencies: network, api
2023-05-28 06:48:29.716 ERROR (MainThread) [homeassistant.setup] Setup failed for zeroconf: (DependencyError(...), 'Could not setup dependencies: network, api')
2023-05-28 06:48:29.717 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of bluetooth. Setup failed for dependencies: usb
2023-05-28 06:48:29.717 ERROR (MainThread) [homeassistant.setup] Setup failed for bluetooth: (DependencyError(...), 'Could not setup dependencies: usb')
2023-05-28 06:48:29.718 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of ssdp. Setup failed for dependencies: network
2023-05-28 06:48:29.718 ERROR (MainThread) [homeassistant.setup] Setup failed for ssdp: (DependencyError(...), 'Could not setup dependencies: network')
2023-05-28 06:48:30.561 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of samsungtv. Setup failed for dependencies: ssdp
2023-05-28 06:48:30.562 ERROR (MainThread) [homeassistant.setup] Setup failed for samsungtv: (DependencyError(...), 'Could not setup dependencies: ssdp')
2023-05-28 06:48:30.562 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of system_health. Setup failed for dependencies: http
2023-05-28 06:48:30.563 ERROR (MainThread) [homeassistant.setup] Setup failed for system_health: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:30.564 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of conversation. Setup failed for dependencies: http
2023-05-28 06:48:30.565 ERROR (MainThread) [homeassistant.setup] Setup failed for conversation: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:30.565 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of map. Setup failed for dependencies: frontend
2023-05-28 06:48:30.565 ERROR (MainThread) [homeassistant.setup] Setup failed for map: (DependencyError(...), 'Could not setup dependencies: frontend')
2023-05-28 06:48:30.566 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of media_source. Setup failed for dependencies: http
2023-05-28 06:48:30.567 ERROR (MainThread) [homeassistant.setup] Setup failed for media_source: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:30.567 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of stream. Setup failed for dependencies: http
2023-05-28 06:48:30.568 ERROR (MainThread) [homeassistant.setup] Setup failed for stream: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:30.568 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of media_player. Setup failed for dependencies: http
2023-05-28 06:48:30.572 ERROR (MainThread) [homeassistant.setup] Setup failed for media_player: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:30.573 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of history. Setup failed for dependencies: http
2023-05-28 06:48:30.573 ERROR (MainThread) [homeassistant.setup] Setup failed for history: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:30.574 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of stt. Setup failed for dependencies: http
2023-05-28 06:48:30.574 ERROR (MainThread) [homeassistant.setup] Setup failed for stt: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:30.575 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of my. Setup failed for dependencies: frontend
2023-05-28 06:48:30.575 ERROR (MainThread) [homeassistant.setup] Setup failed for my: (DependencyError(...), 'Could not setup dependencies: frontend')
2023-05-28 06:48:30.576 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of logbook. Setup failed for dependencies: frontend, http
2023-05-28 06:48:30.576 ERROR (MainThread) [homeassistant.setup] Setup failed for logbook: (DependencyError(...), 'Could not setup dependencies: frontend, http')
2023-05-28 06:48:30.621 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of hacs. Setup failed for dependencies: http, websocket_api, frontend, repairs
2023-05-28 06:48:30.622 ERROR (MainThread) [homeassistant.setup] Setup failed for custom integration hacs: (DependencyError(...), 'Could not setup dependencies: http, websocket_api, frontend, repairs')
2023-05-28 06:48:30.622 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of plex. Setup failed for dependencies: http
2023-05-28 06:48:30.623 ERROR (MainThread) [homeassistant.setup] Setup failed for plex: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:30.623 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of apple_tv. Setup failed for dependencies: zeroconf
2023-05-28 06:48:30.623 ERROR (MainThread) [homeassistant.setup] Setup failed for apple_tv: (DependencyError(...), 'Could not setup dependencies: zeroconf')
2023-05-28 06:48:30.624 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of thread. Setup failed for dependencies: zeroconf
2023-05-28 06:48:30.625 ERROR (MainThread) [homeassistant.setup] Setup failed for thread: (DependencyError(...), 'Could not setup dependencies: zeroconf')
2023-05-28 06:48:30.625 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of application_credentials. Setup failed for dependencies: auth, websocket_api
2023-05-28 06:48:30.625 ERROR (MainThread) [homeassistant.setup] Setup failed for application_credentials: (DependencyError(...), 'Could not setup dependencies: auth, websocket_api')
2023-05-28 06:48:30.661 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of energy. Setup failed for dependencies: websocket_api, history
2023-05-28 06:48:30.662 ERROR (MainThread) [homeassistant.setup] Setup failed for energy: (DependencyError(...), 'Could not setup dependencies: websocket_api, history')
2023-05-28 06:48:30.664 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of dlna_dmr. Setup failed for dependencies: ssdp
2023-05-28 06:48:30.664 ERROR (MainThread) [homeassistant.setup] Setup failed for dlna_dmr: (DependencyError(...), 'Could not setup dependencies: ssdp')
2023-05-28 06:48:30.665 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of camera. Setup failed for dependencies: http
2023-05-28 06:48:30.665 ERROR (MainThread) [homeassistant.setup] Setup failed for camera: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:30.666 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of tts. Setup failed for dependencies: http
2023-05-28 06:48:30.666 ERROR (MainThread) [homeassistant.setup] Setup failed for tts: (DependencyError(...), 'Could not setup dependencies: http')
2023-05-28 06:48:30.830 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of assist_pipeline. Setup failed for dependencies: conversation, stt, tts
2023-05-28 06:48:30.830 ERROR (MainThread) [homeassistant.setup] Setup failed for assist_pipeline: (DependencyError(...), 'Could not setup dependencies: conversation, stt, tts')
2023-05-28 06:48:30.990 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of mobile_app. Setup failed for dependencies: http, webhook, person, websocket_api
2023-05-28 06:48:30.990 ERROR (MainThread) [homeassistant.setup] Setup failed for mobile_app: (DependencyError(...), 'Could not setup dependencies: http, webhook, person, websocket_api')
2023-05-28 06:48:30.994 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of esphome. Setup failed for dependencies: assist_pipeline, bluetooth
2023-05-28 06:48:30.994 ERROR (MainThread) [homeassistant.setup] Setup failed for esphome: (DependencyError(...), 'Could not setup dependencies: assist_pipeline, bluetooth')
2023-05-28 06:48:31.827 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of default_config. Setup failed for dependencies: application_credentials, assist_pipeline, bluetooth, cloud, conversation, energy, frontend, history, logbook, map, media_source, mobile_app, my, network, person, ssdp, stream, system_health, usb, webhook, zeroconf
2023-05-28 06:48:31.828 ERROR (MainThread) [homeassistant.setup] Setup failed for default_config: (DependencyError(...), 'Could not setup dependencies: application_credentials, assist_pipeline, bluetooth, cloud, conversation, energy, frontend, history, logbook, map, media_source, mobile_app, my, network, person, ssdp, stream, system_health, usb, webhook, zeroconf')
2023-05-28 06:48:41.110 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of homekit. Setup failed for dependencies: http, network
2023-05-28 06:48:41.111 ERROR (MainThread) [homeassistant.setup] Setup failed for homekit: (DependencyError(...), 'Could not setup dependencies: http, network')
2023-05-28 06:48:50.803 ERROR (SyncWorker_5) [homeassistant.util.package] Unable to install package python-kodaksmarthome==0.1.5b1: ERROR: Cannot install python-kodaksmarthome==0.1.5b1 because these package versions have conflicting dependencies.
ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts

[notice] A new release of pip is available: 23.1 -> 23.1.2
[notice] To update, run: pip install --upgrade pip
2023-05-28 06:48:54.277 ERROR (SyncWorker_5) [homeassistant.util.package] Unable to install package python-kodaksmarthome==0.1.5b1: ERROR: Cannot install python-kodaksmarthome==0.1.5b1 because these package versions have conflicting dependencies.
ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts

[notice] A new release of pip is available: 23.1 -> 23.1.2
[notice] To update, run: pip install --upgrade pip
2023-05-28 06:48:57.873 ERROR (SyncWorker_5) [homeassistant.util.package] Unable to install package python-kodaksmarthome==0.1.5b1: ERROR: Cannot install python-kodaksmarthome==0.1.5b1 because these package versions have conflicting dependencies.
ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts

[notice] A new release of pip is available: 23.1 -> 23.1.2
[notice] To update, run: pip install --upgrade pip
2023-05-28 06:48:57.875 ERROR (MainThread) [homeassistant.setup] Setup failed for custom integration kodak_smart_home: Requirements for kodak_smart_home not found: ['python-kodaksmarthome==0.1.5b1'].
2023-05-28 09:57:18.567 WARNING (MainThread) [custom_components.meross_lan] MerossMQTTConnection(1420176:mqtt-us-2.meross.com:443): device(Cherub Baby Machine) not registered for MQTT handling on this profile
2023-05-28 10:15:42.587 ERROR (MainThread) [homeassistant.components.sharkiq] Unexpected error updating SharkIQ.  Attempting re-auth
Traceback (most recent call last):
  File "/usr/src/homeassistant/homeassistant/components/sharkiq/update_coordinator.py", line 71, in _async_update_data
    all_vacuums = await self.ayla_api.async_list_devices()
  File "/usr/local/lib/python3.10/site-packages/sharkiq/ayla_api.py", line 208, in async_list_devices
    devices = await resp.json()
  File "/usr/src/homeassistant/homeassistant/helpers/aiohttp_client.py", line 72, in json
    return await super().json(*args, loads=loads, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/aiohttp/client_reqrep.py", line 1104, in json
    raise ContentTypeError(
aiohttp.client_exceptions.ContentTypeError: 0, message='Attempt to decode JSON with unexpected mimetype: text/html', url=URL('https://ads-field-39a9391a.aylanetworks.com/apiv1/devices.json')
2023-05-28 10:15:42.711 ERROR (MainThread) [homeassistant.components.sharkiq] Error fetching sharkiq data: 0, message='Attempt to decode JSON with unexpected mimetype: text/html', url=URL('https://ads-field-39a9391a.aylanetworks.com/apiv1/devices.json')

Any idea how to proceed?

Shutdown the VM. Clone it (full clone). Open cloned VM and make all changes in that VM.

Most likely something in configuration.yaml. First make a copy. Then revert to default. See if you can access 8123. If you can, work backwards adding config entries, one at a time, until it breaks.

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

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

# Text to speech
tts:
  - platform: google_translate

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

Thanks for your help, I was able to get it working with this change. Kinda weird that it just stopped working…

Old config:

# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:
http:
# Add use_x_forwarded_for
  use_x_forwarded_for: true
  trusted_proxies:
  - 10.0.0.1/32

New config:

# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:
http:
  use_x_forwarded_for: true
  trusted_proxies:
    - 10.0.0.0/24