You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hallo,
my Raspberry PI with HassOS has the IP address 192.168.0.2 and Home Assistant is reachable under homeassistant.local in my network.
Unfortunately for some reason I can only connect to the InfluxDB add-on on Home Assistant itself. When I try this on my local computer, I always get a 404.
I have a small Python script for testing access:
with InfluxDBClient(url="http://homeassistant.local:8086", username="...", password="...", org="home") as client:
query_api = client.query_api()
tables = query_api.query('from(bucket:"home") |> range(start: -10m)')
for table in tables:
print(table)
I have also tried with url="http://192.168.0.2:8086" but that also didn't work. And in the addon-on configuration I have disabled SSL.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hallo,
my Raspberry PI with HassOS has the IP address 192.168.0.2 and Home Assistant is reachable under homeassistant.local in my network.
Unfortunately for some reason I can only connect to the InfluxDB add-on on Home Assistant itself. When I try this on my local computer, I always get a 404.
I have a small Python script for testing access:
I have also tried with url="http://192.168.0.2:8086" but that also didn't work. And in the addon-on configuration I have disabled SSL.
What is wrong here?
Thanks,
Blissi
Beta Was this translation helpful? Give feedback.
All reactions