influxdb 连接到 cloudfront aws

influxdb 连接到 cloudfront aws

刚刚使用此 repo 在 fedora server 35 上安装了 influxdb:

https://repos.influxdata.com/rhel/8/x86_64/stable/

每次我重新启动服务influxdb(默认配置)它都会连接到 aws cloudfront 上的随机 ip:

tcp   ESTAB     0      0            192.168.6.233:44522 143.204.224.81:443   users:(("influxd",pid=45731,fd=16)) timer:(keepalive,20sec,0) uid:988 ino:149215 sk:31 cgroup:/system.slice/influxdb.service <->

tcp   ESTAB     0      0            192.168.6.233:47106   18.64.79.51:443   users:(("influxd",pid=45632,fd=16)) timer:(keepalive,12sec,0) uid:988 ino:148945 sk:29 cgroup:/system.slice/influxdb.service <->

我对 influxdb 还很陌生,还没有阅读手册。

有人可以向我解释一下这种行为吗?

谢谢

问候。

答案1

需要读取配置文件来获取它:

/etc/influxdb/influxdb.conf 

禁用报告并且不再建立连接。

# Once every 24 hours InfluxDB will report usage data to usage.influxdata.com
# The data includes a random ID, os, arch, version, the number of series and other
# usage data. No data from user databases is ever transmitted.
# Change this option to true to disable reporting.
reporting-disabled = true

重新启动服务:

systemctl restart influxdb

检查:

ss -lapunte | grep influx

仅建立本地连接。

更多信息请点击这里:

https://www.influxdata.com/telemetry/

相关内容