我们可以更改 influxdb 的 http 协议的绑定地址吗

can we change bind adress of http protocol of influx db

我正在尝试更改 [http] 协议的绑定地址,使用它我可以发送结果但我无法访问 iflux CLI。

我试图将 [http] 的绑定地址从 8086 更改为其他 numbers.But 我无法访问 influx CLI。但是当我拥有 8086 的绑定地址时,我可以访问 influx CLI。

我可能必须将绑定地址从 8086 更改为任何其他地址,因为此端口已被其他服务使用。

任何人都可以帮助我如何更改可以使用 influx CLI 的 [http] 绑定地址。

第一个 select 自由端口 运行:

netstat -an | grep NEW_PORT_NUMBER

如果没有输出,则免费

然后打开/usr/local/etc/influxdb.conf,搜索[http]并修改:

# bind-address = ":8086"

bind-address = ":NEW_PORT_NUMBER"

重启 JMeter

如果您从另一台机器访问它,请检查防火墙是否为此打开 NEW_PORT_NUMBER。

要访问它:

influx -port NEW_PORT_NUMBER -host hostname