Privacy Policy
Snippets index

  Upgrade Monit to latest version on Ubuntu 14

  1. Fully remove existing version
apt-get remove monit -y
apt-get purge monit -y
  1. Install Monit from sources
cd /usr/local/src
wget https://bitbucket.org/tildeslash/monit/downloads/monit-5.25.1.tar.gz
tar xzvf monit-5.25.1.tar.gz
cd monit-5.25.1
apt-get install libpam0g-dev
./configure
make
make install