Hab mit monit Probleme

Alle weiteren Dienste, die nicht in die drei oberen Foren gehören.
Antworten
marcok
Beiträge: 66
Registriert: 29.05.2009 15:38:30

Hab mit monit Probleme

Beitrag von marcok » 15.07.2009 20:27:35

Ja also wollte mir monit auf Server machen hab aber irgendwie ein Problem und bekomm es nicht zum laufen.

Hab das so durchgezogen:

blacky:/etc/ssh# apt-get install monit

blacky:/etc/ssh# vi /etc/monit/monitrc

# Aktualisierungsinterval
set daemon 60

# Speicherort des monit Logfiles
set logfile /var/log/monit

# Mailversand ueber
set mailserver localhost # primary mailserver
set mail-format { from: monit@DOMAIN Meines SERVERS}
# Mail an
set alert mein.email@domain

#weboberflaesche
set httpd port 2812 and
use address blog.tim-bormann.de
allow meinbenutzer:meinpassword

# check ftp
check process proftpd with pidfile /var/run/proftpd.pid
start program = “/etc/init.d/proftpd start”
stop program = “/etc/init.d/proftpd stop”
if failed port 21 protocol ftp then restart
if 5 restarts within 5 cycles then timeout

# check http
check process apache with pidfile /var/run/apache2.pid
group www
start program = “/etc/init.d/apache2 start”
stop program = “/etc/init.d/apache2 stop”
if cpu is greater than 60% for 2 cycles then alert
if cpu > 80% for 5 cycles then restart
if totalmem > 500 MB for 5 cycles then restart
if children > 250 then restart
if loadavg(5min) greater than 10 for 8 cycles then stop
if 3 restarts within 5 cycles then timeout

# check mysql
check process mysql with pidfile /var/run/mysqld/mysqld.pid
group database
start program = “/etc/init.d/mysql start”
stop program = “/etc/init.d/mysql stop”
if failed host 127.0.0.1 port 3306 then restart
if 5 restarts within 5 cycles then timeout


check process postfix with pidfile /var/spool/postfix/pid/master.pid
group mail
start program = “/etc/init.d/postfix start”
stop program = “/etc/init.d/postfix stop”
if failed port 25 protocol smtp then restart
if 5 restarts within 5 cycles then timeout

# check ssh
check process sshd with pidfile /var/run/sshd.pid
start program “/etc/init.d/ssh start”
stop program “/etc/init.d/ssh stop”
if failed port 22 protocol ssh then restart

blacky:/etc/ssh# vi /etc/default/monit

startup=0 << das hier

auf

startup=1 << auf das geändert

blacky:/etc/ssh# /etc/init.d/monit restart
Stopping daemon monitor: monit.
Starting daemon monitor: monitblacky:/etc/ssh#

So wenn ich nun über https://DOMAIN Meines SERVERS.de:2812 gehen will kommt nur

Firefox kann keine Verbindung zu dem Server unter http://www.DOMAIN Meines SERVERS.de:2812 aufbauen.

netstat -ta hab ich mal gesetzt den befehl um zu kucken ob der Dienst auf Port 2812 lauscht aber das tut er nicht.

Hat jemand ne Ahnung was ich machen könnte ????

mfg Marco

Benutzeravatar
knollo
Beiträge: 61
Registriert: 16.03.2009 16:00:26

Re: Hab mit monit Probleme

Beitrag von knollo » 17.07.2009 10:41:55

Schon interessant, was du so überwachen willst
#weboberflaesche
set httpd port 2812 and
use address blog.tim-bormann.de
allow meinbenutzer:meinpassword
Nur helfen kann ICH dir leider nicht.

marcok
Beiträge: 66
Registriert: 29.05.2009 15:38:30

Re: Hab mit monit Probleme

Beitrag von marcok » 19.07.2009 22:04:17

Sorry @knollo das hättest Dir auch sparen können das Posting.Wie gesagt ich lege wert auf sinnvolle Postings die einem dann auch ein stück zum Erfolg weiterhelfen.Das kann ich leider aus deinem Posting nicht entnehmen.Und zum Thema Überwachen das muss einem selber überlassen sein wenn man eigene Server im www betreibt.

Cologne4711
Beiträge: 260
Registriert: 04.12.2006 11:37:59

Re: Hab mit monit Probleme

Beitrag von Cologne4711 » 24.07.2009 10:01:17

Hallo,

große Hilfe ist das vielleicht nicht, aber bei mir sieht das wie folgt aus.

Code: Alles auswählen

set httpd port 2812
    allow admin:adminpass 
    SSL ENABLE
    PEMFILE /etc/apache2/ssl/apache.pem
MfG

Antworten