#!/usr/bin/perl -w use strict; use MIME::Lite; # monitor.pl - a program for monitoring critical processes on a Unix s +erver # Copyright 2004, Tex Thompson <tex@biosysadmin.com> my $emergency_email = 'contact@mail.com'; my $time_to_sleep = 60; my %vital_processes = ( 'httpd' => '/usr/local/apache/bin/apachectl start', 'pop-before-smtp' => '/etc/init.d/pop-before-smtp.init start', 'postfix' => '/etc/init.d/postfix start', 'mysql' => '/etc/init.d/mysql start', 'ssh' => '/etc/init.d/sshd start', 'syslog' => '/etc/init.d/syslog start' ); while (1) { my @process_listing = `ps ax`; foreach my $process ( keys %vital_processes ) { my @running = grep /$process/, @process_listing; my $num_processes = scalar @running; if ( $num_processes == 0 ) { # try to fix the problem my $time = localtime(); print "Process $process not found at $time!\n"; print "Executing command ",$vital_processes{ $process },"\n"; my $command = $vital_processes{ $process }; my $output = `$command`; # send a notification e-mail my $data = "$process not running at $time!\n"; $data .= "Tried to restart with command\n$command\n"; $data .= "Output:\n$output\n"; my $msg = MIME::Lite->build( From => 'root@biosysadmin.com', To => $emergency_email, Subject => "Emergency: $process down", Type => 'TEXT', Data => $data ); $msg->send; } } sleep( $time_to_sleep ); }

In reply to intelli-monitor.pl by biosysadmin

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.