How To Install mailping on Debian 9
Introduction
In this tutorial we learn how to install mailping on Debian 9.
What is mailping
mailping is:
Monitor email service availability and functioning. Tests the whole route from SMTP submission to local delivery, not just whether an SMTP server accepts TCP connections.
Multiple email servers can be tested by creating a remote alias that points back to a local address, and sending test emails to it.
The results of this monitoring are available as graphs via Munin plugins, and can be connected to Nagios to send alerts when the test emails no longer get delivered, or if the delivery takes too long.
There are three methods to install mailping on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install mailping Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install mailping using apt-get by running the following command:
sudo apt-get -y install mailping
Install mailping Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install mailping using apt by running the following command:
sudo apt -y install mailping
Install mailping Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install mailping using aptitude by running the following command:
sudo aptitude -y install mailping
How To Uninstall mailping on Debian 9
To uninstall only the mailping package we can use the following command:
sudo apt-get remove mailping
Uninstall mailping And Its Dependencies
To uninstall mailping and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove mailping
Remove mailping Configurations and Data
To remove mailping configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge mailping
Remove mailping configuration, data, and all of its dependencies
We can use the following command to remove mailping configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge mailping
Dependencies
mailping have the following dependencies:
References
Summary
In this tutorial we learn how to install mailping package on Debian 9 using different package management tools: apt, apt-get and aptitude.