Hi,
I have just installed HA for the first time. As I have another service on my Raspberry Pi, I have performed a Home Assistant Core install. I have got no error on the installation, but I cannot connect to HA in my browser. I have tried:
-
http://homeassistant.local:8123
:This site is not accessible
-
http://localhost:8123/ :
404: Not Found
-
http://127.0.0.1:8123
:404: Not Found
as suggested in the documentation.
For information, the other service is on 127.0.0.1:80 and is not responding anymore afer HA installation. Here, I get a Error 502: Bad Gateway Error
. This service, mycodo, has an nginx configuration listening on ports 80, 443, ssl. So there should be no conflict with HA port 8123.
In my understanding, with the use of ttp://localhost:8123
or http://127.0.0.1:8123
for HA there should be no conflict. However, since I have an nginx setup, does it prevent HA to work as of I configure nginx for it? I am not able to configure nginx myself
Here is what hass has returned to the console:
(homeassistant) homeassistant@raspberrypi:/srv/homeassistant $ hass
Unable to find configuration. Creating default one in /home/homeassistant/.homeassistant
2023-02-26 15:47:52.256 WARNING (MainThread) [homeassistant.bootstrap] Waiting on integrations to complete setup: image_upload
2023-02-26 15:48:27.566 ERROR (MainThread) [homeassistant.setup] Setup failed for analytics: Unable to import component: No module named '_sqlite3'
2023-02-26 15:48:27.570 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of onboarding. Setup failed for dependencies: analytics
2023-02-26 15:48:27.571 ERROR (MainThread) [homeassistant.setup] Setup failed for onboarding: (DependencyError(...), 'Could not setup dependencies: analytics')
2023-02-26 15:48:27.573 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of frontend. Setup failed for dependencies: onboarding
2023-02-26 15:48:27.574 ERROR (MainThread) [homeassistant.setup] Setup failed for frontend: (DependencyError(...), 'Could not setup dependencies: onboarding')
2023-02-26 15:48:27.581 ERROR (MainThread) [homeassistant.setup] Setup failed for recorder: Unable to import component: No module named '_sqlite3'
2023-02-26 16:00:25.758 WARNING (MainThread) [homeassistant.bootstrap] Waiting on integrations to complete setup: cloud
2023-02-26 16:00:57.898 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of history. Setup failed for dependencies: recorder
2023-02-26 16:00:57.898 ERROR (MainThread) [homeassistant.setup] Setup failed for history: (DependencyError(...), 'Could not setup dependencies: recorder')
2023-02-26 16:00:57.961 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of logbook. Setup failed for dependencies: frontend, recorder
2023-02-26 16:00:57.964 ERROR (MainThread) [homeassistant.setup] Setup failed for logbook: (DependencyError(...), 'Could not setup dependencies: frontend, recorder')
2023-02-26 16:00:57.968 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of map. Setup failed for dependencies: frontend
2023-02-26 16:00:57.970 ERROR (MainThread) [homeassistant.setup] Setup failed for map: (DependencyError(...), 'Could not setup dependencies: frontend')
2023-02-26 16:00:57.973 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of my. Setup failed for dependencies: frontend
2023-02-26 16:00:57.982 ERROR (MainThread) [homeassistant.setup] Setup failed for my: (DependencyError(...), 'Could not setup dependencies: frontend')
2023-02-26 16:00:58.027 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of energy. Setup failed for dependencies: history, recorder
2023-02-26 16:00:58.028 ERROR (MainThread) [homeassistant.setup] Setup failed for energy: (DependencyError(...), 'Could not setup dependencies: history, recorder')
2023-02-26 16:06:57.784 WARNING (MainThread) [homeassistant.bootstrap] Setup timed out for stage 2 - moving forward
2023-02-26 16:08:04.896 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of default_config. Setup failed for dependencies: energy, frontend, history, logbook, map, my
2023-02-26 16:08:04.897 ERROR (MainThread) [homeassistant.setup] Setup failed for default_config: (DependencyError(...), 'Could not setup dependencies: energy, frontend, history, logbook, map, my')
2023-02-26 16:08:04.939 WARNING (MainThread) [homeassistant.bootstrap] Detected that frontend did not load. Activating safe mode
2023-02-26 16:08:06.126 ERROR (MainThread) [homeassistant.setup] Setup failed for analytics: Unable to import component: No module named '_sqlite3'
2023-02-26 16:08:06.130 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of onboarding. Setup failed for dependencies: analytics
2023-02-26 16:08:06.131 ERROR (MainThread) [homeassistant.setup] Setup failed for onboarding: (DependencyError(...), 'Could not setup dependencies: analytics')
2023-02-26 16:08:06.135 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of frontend. Setup failed for dependencies: onboarding
2023-02-26 16:08:06.137 ERROR (MainThread) [homeassistant.setup] Setup failed for frontend: (DependencyError(...), 'Could not setup dependencies: onboarding')
2023-02-26 16:08:07.060 ERROR (MainThread) [homeassistant.setup] Unable to set up dependencies of safe_mode. Setup failed for dependencies: frontend
2023-02-26 16:08:07.062 ERROR (MainThread) [homeassistant.setup] Setup failed for safe_mode: (DependencyError(...), 'Could not setup dependencies: frontend')
How should I solve this issue please?