“collectd - snmp.conf”的原因是什么:语法错误,意外的EOL。从新MIB开始使用

问题描述 投票:0回答:1

有许多类似于我的问题,但我无法找到适合我的解决方案。

我目前正在使用收集版本5.8的CentOS 7机器。

由于配置文件中的错误,collectd.service将无法启动。配置文件位于/etc/collectd.d/snmp.conf中,可以从collectd.conf文件中正确调用。我的错误如下:

Mar 30 01:16:24 localhost.localdomain collectd[18779]: Parse error in file `/etc/collectd.d/snmp.conf', line 19 near `<newline>': syntax error, unexpected EOL
Mar 30 01:16:24 localhost.localdomain collectd[18779]: yyparse returned error #1
Mar 30 01:16:24 localhost.localdomain collectd[18779]: configfile: Cannot read file `/etc/collectd.d/snmp.conf'.
Mar 30 01:16:24 localhost.localdomain collectd[18779]: Unable to read config file /etc/collectd.conf.
Mar 30 01:16:24 localhost.localdomain collectd[18779]: Error: Reading the config file failed!
Mar 30 01:16:24 localhost.localdomain collectd[18779]: Read the logs for details.
Mar 30 01:16:24 localhost.localdomain systemd[1]: collectd.service: main process exited, code=exited, status=1/FAILURE
Mar 30 01:16:24 localhost.localdomain systemd[1]: Failed to start Collectd statistics daemon.

我的代码中找不到任何与众不同的东西,也许你们可以找到问题所在。

我发生错误的snmp.conf文件如下:

<Plugin snmp
   <Data "if_octets">
      Type "if_octets"
      Table true
      Instance "IF-MIB::ifDescr"
      Values "IF-MIB::ifOutOctets" "IF-MIB::ifInOctets"
   </Data>
   <Data "if_speed">
      Type "bitrate"
      Table true
      Instance "IF-MIB::ifDescr"
      Values "IF-MIB::ifSpeed"
   </Data>
   <Data "temperature">
      Type "temperature"
      Table false
      Instance "device"
      Scale 0.1
      Values "MIKROTIK-MIB::mtxrHlTemperature.0"
   </Data>
   <Data "processorTemperature">
      Type "temperature"
      Table false
      Instance "processor"
      Scale 0.1
      Values "MIKROTIK-MIB::mtxrHlProcessorTemperature.0"
   </Data>
   <Data "fanspeed">
      Type "fanspeed"
      Table false
      Type "fanspeed"
      Table false
      Instance "fan_speed"
      Values "MIKROTIK-MIB::mtxrHlFanSpeed1.0"
   </Data>
   <Host "best_server_ever">
         Address 127.0.0.1
         Version 2
         Community "public"
         Collect   "if_speed"  "temperature"  "processorTemperature"  "fanspeed"
         Interval 120
         Timeout 10
         Retries 1
   </Host>
   <Host "smallest_server_ever">
         Address 127.0.0.1
         Version 2
         Community "public"
         Collect   "if-speed"  "temperature"  "processorTemperature"  "fanspeed"
         Interval 120
         Timeout 10
         Retries 1
   </Host>
      </Plugin>

错误发生在第19行,这是我使用替代MIB的行,MIB位于/usr/share/snmp/mibs/,我之前使用过它。

Selinux目前处于许可模式,因此这不是导致问题的原因。此外,MIB的文件权限与每个其他MIB的文件权限相同。

snmp mib collectd
1个回答
0
投票

好吧,忘了在snmp配置文件顶部关闭大于号的符号。到目前为止,这不是我最聪明的举动......

请注意每个人都会收到此错误:几乎总是在发生此错误时,这是​​一个简单的拼写错误/语法错误,并不总是出现在上述行中。大多数情况下,它出现在上述文件的前一行中。

© www.soinside.com 2019 - 2024. All rights reserved.