Hey everyone,
Recently, there was a power outage at my house, which caused Hass.IO (Running on Raspberry PI 3, Version is currently unknown (sorry)) to restart. Since then, I can’t access the web UI, whether by “IP.Ad.re.ss:8123” or “hassio.local:8123”. Everytime it says “ERR_CONNECTION_REFUSED”.
I already tried accessing the cinfuguration.yaml according to (´THIS) topic, but even that wasn’t possible. Unfortunately, I also don’t have SSH or SAMBA set up, so nothing to do in this direction.
Here is the last Log and my configuration.yaml(*** means I blanked out this Information for privacy or security reasons). I retrieved both of them by taking the SD Card out, and accessing it within a Windows 10 Machine.
CONFIGURATION.YAML:
# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:
# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
# http:
# base_url: example.duckdns.org:8123
# Text to speech
tts:
- platform: google_translate
group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
device_tracker:
- platform: fritz
host: 192.168.178.1
username: ***
password: ***
interval_seconds: 10
consider_home: 15
new_device_defaults:
track_new_devices: true
sensor:
- platform: fritzbox_netmonitor
host: 192.168.178.1
name: "Network Monitor"
- platform: template
sensors:
fritzbox_is_linked:
friendly_name_template: "ISP Link State"
value_template: '{{ states.sensor.network_monitor.attributes["is_linked"] }}'
icon_template: mdi:lan-pending
fritzbox_is_connected:
friendly_name_template: "Internet Connection State"
value_template: '{{ states.sensor.network_monitor.attributes["is_connected"] }}'
icon_template: mdi:lan-connect
fritzbox_external_ip:
friendly_name_template: "External IP"
value_template: '{{ states.sensor.network_monitor.attributes["external_ip"] }}'
icon_template: mdi:web
fritzbox_uptime:
friendly_name_template: "Uptime"
value_template: '{{ states.sensor.network_monitor.attributes["uptime"] / 60 }}'
unit_of_measurement: 'Minutes'
icon_template: mdi:timer
fritzbox_transmission_rate_up:
friendly_name_template: "Current Transmissionrate Up"
unit_of_measurement: 'MB/s'
value_template: '{{ states.sensor.network_monitor.attributes["transmission_rate_up"] * 8 / 1000000 | int }}'
icon_template: mdi:upload-network
fritzbox_transmission_rate_down:
friendly_name_template: "Current Transmissionrate Down"
unit_of_measurement: 'MB/s'
value_template: '{{ states.sensor.network_monitor.attributes["transmission_rate_down"] * 8 / 1000000 | int }}'
icon_template: mdi:download-network
- platform: fritzbox_callmonitor
name: "Call Monitor"
host: 192.168.178.1
username: ***
password: ***
phonebook: 0
prefixes:
- ***
- ***
- ***
- platform: cpuspeed
- platform: systemmonitor
resources:
- type: throughput_network_in
arg: eth0
- type: throughput_network_out
arg: eth0
- type: memory_use_percent
- type: ipv4_address
arg: eth0
- type: ipv6_address
arg: eth0
- type: processor_use
- type: disk_use_percent
arg: /
speedtestdotnet:
server_id: '6601'
scan_interval: '00:00:30'
#media_player:
# - platform: androidtv
# name: Fire TV 4k
# host: 192.168.178.58
HOME_ASSISTANT.LOG:
Unfortunately, this is a 8.3MB File, which caused big problems, when I tried to paste it’s contents so instead, here is a link to the file: https://filehorst.de/d/dgvgjenw
Thanks in advance,
Colin