Port 8085 was the legacy InfluxDB HTTP API port in older versions. InfluxDB 1.x used port 8086 for HTTP writes/queries. Port 8085 was used for some clustering and relay configurations. Modern InfluxDB 2.x/3.x uses only port 8086. Check which version is running if you see port 8085 active.
Port Number
8085
Protocol
TCP
Service
InfluxDB HTTP API (Legacy)
Range
IANA Registered (1024–49151)
Identify what process is using port 8085
ss -tnlp sport = :8085Check if a health endpoint responds
curl -s http://localhost:8085/healthIdentify the service by response headers
curl -s http://localhost:8085/curl http://localhost:8085/health
influx-relay --config relay.toml
nmap -sV -p 8085 targetInfluxDB relay was a community tool for replicating writes to multiple InfluxDB 1.x instances before InfluxDB Enterprise added native clustering. Port 8085 was the relay's default listener. The relay project was archived when InfluxDB 2.x introduced native replication. Gogs (a self-hosted Git service written in Go) also uses 8085 in some deployment guides.
Should I still use InfluxDB relay?
No. The influxdb-relay project is archived and unmaintained. For InfluxDB 1.x: use Telegraf with multiple output plugins to write to multiple instances. For InfluxDB 2.x/3.x: use native replication or InfluxDB Cloud. For high availability: deploy InfluxDB Enterprise or migrate to VictoriaMetrics which has built-in clustering.