I’m running Hass.io on a VM if that helps. I followed the guide https://www.home-assistant.io/addons/mariadb/ exactly except I chose a different password to use and now when I reboot I get Errors “Recorder could not start, please check the log” and Invalid Config “The following components and platforms could not be set up: recorder, history, logbook, default-config”
I hit up the subreddit today and got a suggestion to try my system’s IP address instead of @core-mariadb and that didn’t work either.
my settings:
inside my yaml…
# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
# http:
# base_url: mydomain.duckdns.org:8123
# Text to speech
tts:
- platform: google_translate
recorder:
purge_keep_days: 10
purge_interval: 1
db_url: mysql://hass:MYchosenPASSWORD@core-mariadb/homeassistant?charset=utf8
history:
logbook:
and inside the add-on config…
{
"databases": [
"homeassistant"
],
"logins": [
{
"username": "hass",
"host": "%",
"password": "MYchosenPASSWORD"
}
],
"rights": [
{
"username": "hass",
"host": "%",
"database": "homeassistant",
"grant": "ALL PRIVILEGES ON"
}
]
}