Hey,
I am struggling to setup the configuration file of InfluxDBv2.
Specifications:
InfluxDB 2.0.8 (git: e91d41810f) build_date: 2021-08-13T18:22:30Z
Debian GNU/Linux 10 (buster)
on Raspberry Pi
InfluxDB is running as a service.
I manually set the following environment variables:
INFLUXD_CONFIG_PATH=/home/pi/.influxdbv2/configs
I’ve setup the config file using CLI:
influx config create --host-url "http://192.168.178.72:8086" --org michashaus --config-name influxConfig --active -t AUTHENTIFICATION_TOKEN_ILL_NOT_POST
The config was created in ~/.influxdbv2/configs.
Now I was trying to make use of the configuration file. I want to change the port, so I can type 192.168.178.72:1234 in the browser to access the graphical UI.
Therefore I’ve changed the url=… and added a bind-address property.
[influxConfig]
url = "http://192.168.178.72:1234"
token = "AUTHENTIFICATION_TOKEN_ILL_NOT_POST"
org = "michashaus"
active = true
http-bind-address = ":1234"
I stopped InfluxDB and started the service again.
Unfornutaly I am not able to access the UI using Port 1234.
Besides the above I’ve tried to only add the http-bing-address property, changing the above mentioned environment variable to a specific cofig.yoml file and pasting my configuration in that file.
So far I had no luck.
What am I doing wrong?
Best regards,
DezzardHD