I am using ubuntu 22.04 with nymea. Nymea uses the influxd for logging. the influxd is version InfluxDB v1.6.7~rc0 (git: unknown unknown). The nymea-env configuration file in /etc/systemd/system/influx.system.d is
[Service]
Environment=“INFLUXDB_HTTP_BIND_ADDRESS=0.0.0.0:8086”
Environment=“INFLUXDB_MONITOR_STORE_ENABLED=false”
Environment=“INFLUXDB_HTTP_LOG_ENABLED=false”
Environment=“INFLUXDB_CONTINUOUS_QUERIES_LOG_ENABLED=false”
Environment=“INFLUXDB_CONTINUOUS_QUERIES_QUERY_STATS_ENABLED=false”
Environment=“INFLUXDB_DATA_QUERY_LOG_ENABLED=false”
the /etc/influx/influx.conf for remote access is configured as
[http]
220 # Determines whether HTTP endpoint is enabled.
221 enabled = true
222
223 # The bind address used by the HTTP service.
224 bind-address = “0.0.0.0:8086”
225
226 # Determines whether user authentication is enabled over HTTP/HTTPS.
227 # auth-enabled = false
this did allow network access until this week, remote access from computers on my network.
sudo netstat -tulpn | grep LISTEN
shows
tcp 0 0 127.0.0.1:8086 0.0.0.0:* LISTEN 1162/influxd
what may have changed that influxd is restricting the access to only local access?