刚刚在 CentOS 上安装了 InfluxDB v.1.1.0 ,但是当我尝试启动该服务时,它提示端口 8088 已被另一个应用程序使用:

[run] 2016/11/28 13:50:54 InfluxDB starting, version 1.1.0, branch master, commit 800da5732b91c816b0a097acf8887fa2af1efa1a
[run] 2016/11/28 13:50:54 Go version go1.7.3, GOMAXPROCS set to 4
[run] 2016/11/28 13:50:54 Using configuration at: /etc/influxdb/influxdb.conf
run: open server: listen: listen tcp :8088: bind: address already in use

这个端口在哪里配置,如何更改? /etc/influxdb/influxdb.conf 中没有提及它。

最佳答案

在 Github 上找到 6286

运行 influxd config | head -n 10 为您提供配置。

bind-address = ":<port>" 文件顶部的某处添加 /etc/influxdb/influxdb.conf 可以解决问题。

关于InfluxDB 端口 8088,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40844762/

10-16 07:18