Access InfluxDB locally (from a different machine) with python

How can I access the data in my local network from a different machine than the localhost.
I’ve installed InfluxDB on a raspberry pi 3 (openhab). I can access it from the host device but I can’t get it to work from a different machine in LAN (errno 61) the port is also not open when looking up from another device…
the preconfigured url is (influxdb.cfg as influxdb.conf)

http://localhost:8086

InfluxDB version is 18.8.10

solved it by changing influxdb.conf under section [http]

bind-address = "localhost:8086"

to

bind-adress=":8086"