What is a good command to monitor a Postfix installation on a linux server? It should be one command that can be run from a command prompt in an SSH session and returns information about whether the postfix process is active and the size of the relevant mail queues.
|
|
|
|
|
|
|
You can use the command line programs that come with Postfix:
What you find with the ps command will vary depending on how you set things up. |
||
|
|
|
In order of preference: The best way is to send heartbeat messages through the mail server and monitor their arrival at the destination. Use mailq and qshape (shipped with recent postfix distributions) to monitor queues. You can check that smtpd is listening and returning a banner using netcat (options to netcat vary by OS; these are for linux): nc -w 1 localhost 25 </dev/null The following will report the number of processes for each postfix daemon, grouped by master (multiple masters if you have multiple postfix instances).
|
||
|
|
