Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: copy edit and move into docs

1.
comment To disable SNMP on a CSN (prevent it from responding to SNMP requests), follow this process:

  1. Comment out these three lines in this file: /etc/monit.d/caringo-csn.monitrc 

...

  1. Code Block

...

  1. languagejava

...

  1. check process snmpd with pidfile "/var/run/snmpd.pid"

...

  1. 
    start program = "/etc/init.d/snmpd start"

...

  1. 
    stop program = "/etc/init.d/snmpd stop"

...

{code}

...


  1. Turn off the snmpd process

...

  1. Code Block

...

  1. languagejava

...

  1. chkconfig snmpd off

...


  1. Reboot the CSN

...

  1. .
  2. After the reboot finishes, verify that port 161

...

  1. is not listening.

    Code Block
    languagejava
    netstat -an | grep 161


Info
titleNote

Please be aware that this does not disable SNMP on the storage nodes themselves.   This is specifically to stop responding to SNMP requests made to the CSN. 

...