Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

\uD83D\uDCD8 Instructions

Steps below are provided depending on the version of CentOS/RHEL. For 6.X versions, service is used, whereas 7.X systemctl is used.

  1. SSH as root user to the CSN

  2. Edit /etc/monit.conf and comment out the include line 246 so that it looks like this:

    Code Block
    #include /etc/monit.d/*
  3. Restart monit

    Code Block
    service monit restart
    Code Block
    systemctl restart monit
  4. Shut off DHCP:

    Code Block
    service dhcpd stop
    Code Block
    systemctl stop dhcpd
  5. Verify DHCP is no longer running. Wait about a minute just to make sure that monit is not bringing DHCP back up.

    Code Block
    # service dhcpd status
    Code Block
    systemctl stop dhcpd is stopped
  6. Revert that change changes if/when necessary.

...