Installation

influxdb 連接到雲端 aws

  • March 13, 2022

剛剛使用這個 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 很陌生,還沒有閱讀手冊。

有人可以向我解釋這種行為嗎?

謝謝

問候。

需要讀取 conf 文件來獲取它:

/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/

引用自:https://serverfault.com/questions/1096014