Monit is a monitoring tool for servers that can be used to keep an eye on system performance, activity, and security. It can be used to monitor the health of servers, as well as their applications and services. Monit can also be used to detect problems with systems or applications. There are a few things you need in order to use Monit for server monitoring. The first is a computer with a working operating system and enough memory to run it. The second is the Monit agent software. This software will run on your computer and will allow you to connect to your servers through the network. The third is the monit daemon software. This software will run on your computer and will allow you to access your servers through their ports. Once you have all of these tools, you can start using Monit for server monitoring by following these steps:

  1. Connect to your server through the network using the monit agent software.
  2. Start the monit daemon software on your server so that it can start watching for events.
  3. Use themonit command line tool to view information about your servers and applications.

Monit is a server monitoring program that can check the processes running on your system to ensure that they’re always online and operating within reasonable CPU and memory limits. It also comes with a web interface to monitor your system.

What Does Monit Do?

Essentially, Monit will check in on a given process every two minutes (by default) to see how it’s doing. It keeps a log of resource usage, and can take action if an error occurs. This includes relaunching crashed processes, and restarting processes using too many resources.

Monit defines its behavior entirely through config files. Here’s the default config for MySQL as an example:

Monit is configured to monitor the running MySQL process. If it goes down, it can start it again using the start program = config. If MySQL starts using too many resources, it can be restarted automatically, though you’ll be warned by email first.

It can also be configured to monitor your system as a whole, and can alert you if your server is experiencing unusual load.

Everything Monit monitors is viewable from the web interface, which runs over port 2812 by default.

Additionally, you can view data for multiple hosts all in one place with the M/Monit utility, which does require a license but is free to try.

RELATED: How to Setup Slack Notifications for Low Disk Space On Your Server

Installing and Configuring Monit

Install Monit from your distro’s package manager; for Debian based systems like Ubuntu, that would be:

Monit should come with default config, usually located at ~/.monitrc. If it didn’t (as was the case with a macOS installation) you can find the default config files here.

Monit’s web interface is configured to run on port 2812. This is fine, but it’s entirely open by default with a default password. We’ll want to lock it down to an authorized IP address and

Change this password, of course. There’s a few more configuration options for the web interface, but this is good for now.

Monit can then be configured to monitor individual processes. Usually, this is done with the processes PID file (often found in /var/run/) which stores the current PID of the running instance of that process, since the PID will change whenever the process restarts.

You’ll need to pass Monit a command to start and stop your process. It should automatically restart if the process goes down, with no additional config, but if you want to restart based on resource usage, you’ll have to specify that yourself with a few if statements:

Monit will send out alerts whenever something restarts, so you’ll be notified when something is wrong.

Once you’re done with the config, reload the monit daemon with:

And start monitoring with:

This should start the web interface as well, which you can use to verify that Monit is working properly, usually running on port 2812.

This is the basic config to get Monit running out of the box, but Monit has a lot more syntax. You can read the full manual on everything Monit can do to learn more.

Configuring Alerts

Monit can be configured to send email alerts whenever major issues occur, or when processes are restarted. You’ll need to add configuration for your mail server:

The first block defines the mail server to use. The easiest method would be to just use smtp.gmail.com with a Gmail account, though you could install Postfix on your server to run locally, or use an enterprise email service.

The second line tells Monit to queue alerts, if the mail server isn’t reachable for whatever reason.

Obviously, you’ll also need to set the email address it sends to:

Additionally, since Monit has the ability to run scripts with the exec command, you can set up custom alerts however you’d like. For example, you could set up a script to send you Slack notifications, store it as /usr/local/bin/slack-webhook.sh, and run it whenever nginx changes PID or is restarted by Monit:

Note that all paths must be fully qualified, including /bin/bash and paths to executables in your local bin. And after you’re done modifying the config files, you’ll need to reload Monit again.