我有两台centos机器,机器A和机器B。在机器A中,我安装了collectd和InfloxDB。因此,使用collectd将来自机器A的系统度量推入infloxDB。我已经在B机上安装了collected。现在,我需要将系统度量从B机推到A机上的infloxDB。
Collectd使用端口25826。当我在机器A中运行下面提到的命令时,我的输出是:
机器A:

command: netstat -tuplen | grep ':25826'
 output : udp6       0      0 :::25826  :::* 981  325073833  23132/influxd

在机器B中:
sudo netstat -tuplen | grep ':25826'

没有输出
当我在机器B中使用以下命令时:
command:telnet "xxx.xx.xx.xx" "25826"
output:Trying xxx.xx.xx.xx...
telnet: connect to address xxx.xx.xx.xx: No route to host

如何在机器B中创建主机…以便我可以将度量从机器B推到机器A…两个机器PING命令都在工作

最佳答案

在A号机器里,你正在涌入。inflox正在监听端口:25826.这是您运行netstat -tuplen | grep ':25826' output : udp6 0 0 :::25826 :::* 981 325073833 23132/influxd时看到的
如果要从计算机B发送度量值以影响计算机A,请编辑用于在计算机B上收集的网络插件选项
应该像这样
块引用

LoadPlugin  network
<Plugin network>
Server "<Machine A IP>" "25826"
</Plugin>

10-06 14:25