Apache 2 regelmäßge Errors

Invictus

New Member
Guten Tag,

wir haben seit einem Monat folgendes Problem mit unserem Apache2 wohlmöglich.

Fehler: Verbindung fehlgeschlagen
Firefox kann keine Verbindung zu dem Server unter "....." aufzubauen.

Er läd die Webseite, oder mal nicht ganz wie er es will, in den Logs steht nichts der gleichen drin. RAM hat er 8GB der Server und steht bei Server4you (Deutschland).

Wir haben zum anderem nichts an dem Server geändert, vorher lief es noch reibungslos.


Apache2.conf

Code:
#
# Based upon the NCSA server configuration files originally by Rob McCool.
#
# This is the main Apache server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See http://httpd.apache.org/docs/2.2/ for detailed information about
# the directives.
#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned.  
#
# The configuration directives are grouped into three basic sections:
#  1. Directives that control the operation of the Apache server process as a
#     whole (the 'global environment').
#  2. Directives that define the parameters of the 'main' or 'default' server,
#     which responds to requests that aren't handled by a virtual host.
#     These directives also provide default values for the settings
#     of all virtual hosts.
#  3. Settings for virtual hosts, which allow Web requests to be sent to
#     different IP addresses or hostnames and have them handled by the
#     same Apache server process.
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path.  If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "foo.log"
# with ServerRoot set to "/etc/apache2" will be interpreted by the
# server as "/etc/apache2/foo.log".
#

### Section 1: Global Environment
#
# The directives in this section affect the overall operation of Apache,
# such as the number of concurrent requests it can handle or where it
# can find its configuration files.
#

#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# NOTE!  If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the LockFile documentation (available
# at <URL:http://httpd.apache.org/docs/2.2/mod/mpm_common.html#lockfile>);
# you will save yourself a lot of trouble.
#
# Do NOT add a slash at the end of the directory path.
#
#ServerRoot "/etc/apache2"

#
# The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
#
LockFile ${APACHE_LOCK_DIR}/accept.lock

#
# PidFile: The file in which the server should record its process
# identification number when it starts.
# This needs to be set in /etc/apache2/envvars
#
PidFile ${APACHE_PID_FILE}

#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 300

#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.
#
KeepAlive On

#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 500

#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 4

##
## Server-Pool Size Regulation (MPM specific)
## 

# prefork MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# MaxSpareServers: maximum number of server processes which are kept spare
# MaxClients: maximum number of server processes allowed to start
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule mpm_prefork_module>
    StartServers          5
    MinSpareServers       5
    MaxSpareServers      10
    MaxClients          150
    MaxRequestsPerChild   0
</IfModule>

# worker MPM
# StartServers: initial number of server processes to start
# MaxClients: maximum number of simultaneous client connections
# MinSpareThreads: minimum number of worker threads which are kept spare
# MaxSpareThreads: maximum number of worker threads which are kept spare
# ThreadLimit: ThreadsPerChild can be changed to this maximum value during a
#              graceful restart. ThreadLimit can only be changed by stopping
#              and starting Apache.
# ThreadsPerChild: constant number of worker threads in each server process
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule mpm_event_module>
    StartServers          2
    MaxClients          1875
    MinSpareThreads      25
    MaxSpareThreads      75 
    ThreadLimit          64
    ThreadsPerChild      25
    MaxRequestsPerChild   0
</IfModule>

# event MPM
# StartServers: initial number of server processes to start
# MaxClients: maximum number of simultaneous client connections
# MinSpareThreads: minimum number of worker threads which are kept spare
# MaxSpareThreads: maximum number of worker threads which are kept spare
# ThreadsPerChild: constant number of worker threads in each server process
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule mpm_event_module>
    StartServers          2
    MaxClients          1875
    MinSpareThreads      25
    MaxSpareThreads      75 
    ThreadLimit          64
    ThreadsPerChild      25
    MaxRequestsPerChild   0
</IfModule>

# These need to be set in /etc/apache2/envvars
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}

#
# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives.  See also the AllowOverride
# directive.
#

AccessFileName .htaccess

#
# The following lines prevent .htaccess and .htpasswd files from being 
# viewed by Web clients. 
#
<Files ~ "^\.ht">
    Order allow,deny
    Deny from all
    Satisfy all
</Files>

#
# DefaultType is the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value.  If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
#
DefaultType text/plain


#
# HostnameLookups: Log the names of clients or just their IP addresses
# e.g., www.apache.org (on) or 204.62.129.132 (off).
# The default is off because it'd be overall better for the net if people
# had to knowingly turn this feature on, since enabling it means that
# each client request will result in AT LEAST one lookup request to the
# nameserver.
#
HostnameLookups Off

# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here.  If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
#
ErrorLog ${APACHE_LOG_DIR}/error.log

#
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn

# Include module configuration:
Include mods-enabled/*.load
Include mods-enabled/*.conf

# Include all the user configurations:
Include httpd.conf

# Include ports listing
Include ports.conf

#
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
# If you are behind a reverse proxy, you might want to change %h into %{X-Forwarded-For}i
#
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

# Include of directories ignores editors' and dpkg's backup files,
# see README.Debian for details.

# Include generic snippets of statements
Include conf.d/

# Include the virtual host configurations:
Include sites-enabled/

SetOutputFilter DEFLATE
SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ \
    no-gzip dont-vary
SetEnvIfNoCase Request_URI \
    \.(?:exe|t?gz|zip|bz2|sit|rar)$ \
    no-gzip dont-vary
SetEnvIfNoCase Request_URI \.pdf$ no-gzip dont-vary

BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html



Edit: Error.log -> Apache2


Code:
[Fri Jan 13 11:03:04 2012] [notice] caught SIGTERM, shutting down
[Fri Jan 13 11:03:05 2012] [notice] Apache/2.2.16 (Debian) configured -- resuming normal operations
[Fri Jan 13 11:12:12 2012] [notice] Graceful restart requested, doing restart
[Fri Jan 13 11:12:12 2012] [notice] Apache/2.2.16 (Debian) configured -- resuming normal operations
[Fri Jan 13 11:16:06 2012] [notice] Graceful restart requested, doing restart
[Fri Jan 13 11:16:06 2012] [notice] Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze3 with Suhosin-Patch configured -- resuming normal operations
[Fri Jan 13 11:16:16 2012] [notice] caught SIGTERM, shutting down
[Fri Jan 13 11:16:17 2012] [notice] Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze3 with Suhosin-Patch configured -- resuming normal operations
[Fri Jan 13 11:21:21 2012] [notice] Graceful restart requested, doing restart
[Fri Jan 13 11:21:21 2012] [notice] Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze3 with Suhosin-Patch configured -- resuming normal operations
[Fri Jan 13 11:21:36 2012] [notice] Graceful restart requested, doing restart
[Fri Jan 13 11:21:36 2012] [notice] Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze3 with Suhosin-Patch configured -- resuming normal operations
[Fri Jan 13 11:22:39 2012] [notice] Graceful restart requested, doing restart
[Fri Jan 13 11:22:39 2012] [notice] Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze3 with Suhosin-Patch configured -- resuming normal operations
[Fri Jan 13 11:22:53 2012] [notice] caught SIGTERM, shutting down
[Fri Jan 13 11:22:54 2012] [notice] Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze3 with Suhosin-Patch mod_perl/2.0.4 Perl/v5.10.1 configured -- resuming normal operations
[Fri Jan 13 11:32:00 2012] [notice] caught SIGTERM, shutting down
[Fri Jan 13 11:32:01 2012] [notice] Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze3 with Suhosin-Patch mod_perl/2.0.4 Perl/v5.10.1 configured -- resuming normal operations
Bitte um Rat
 
Last edited by a moderator:
Nutzt Ihr Froxlor?

Ich hatte ein selbiges Problem, das Deaktivieren von Logrotate in den Froxlor Einstellungen hat das Problem mehr oder weniger aus der Welt geschafft ;)
 
Nein benutzen wir nicht, es ist nur ein Apache2 Mysql5 PHP5 und TS3 Server isntalliert;)

Ansonsten ist nichts installiert, und das Problem trat vorher auch nicht auf. Es geschah einfach von selbst ohne Fremdeinwirkung.
 
Ein Webserver startet sich nicht einfach so neu - schon gar nicht in der Häufigkeit deines Logfiles.

Code:
cat /var/spool/cron/crontabs/*
 
cat: /var/spool/cron/crontabs/*: Datei oder Verzeichnis nicht gefunden

Das Problem ist, dass die Webseite nicht erreichbar ist und dann erst nach paar Minuten erst wieder, danach kann man paar unterseiten erreichen dannach ist wieder Ende.
 
Dein Webserver wurde 9 mal in 30 Minuten neu gestartet. Davon fünf mal über einen normalen restart und vier mal wo er mehr oder weniger gecrasht ist.
Hast du in /var/log/syslog irgendwas entsprechendes zu den Zeitpunkten? Evtl. konkurrierende DNS-Einträge für die Domain?
 
Code:
an 13 09:35:38 zebra852 postfix/pickup[6521]: BEB3E23AE344: uid=33 from=<www-data>
Jan 13 09:35:38 zebra852 postfix/cleanup[6712]: BEB3E23AE344: message-id=<[email protected]>
Jan 13 09:35:38 zebra852 postfix/qmgr[969]: BEB3E23AE344: from=<[email protected]>, size=1837, nrcpt=1 (queue active)
Jan 13 09:35:40 zebra852 postfix/smtp[6715]: BEB3E23AE344: to=<[email protected]>, relay=mx1.hotmail.com[65.54.188.126]:25, delay=1.3, delays=0.08/0.03/0.49/0.68, dsn=2.0.0, status=sent (250  <[email protected]> Queued mail for delivery)
Jan 13 09:35:40 zebra852 postfix/qmgr[969]: BEB3E23AE344: removed
Jan 13 09:39:01 zebra852 /USR/SBIN/CRON[6718]: (root) CMD (  [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -type f -cmin +$(/usr/lib/php5/maxlifetime) -delete)
Jan 13 10:09:01 zebra852 /USR/SBIN/CRON[6826]: (root) CMD (  [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -type f -cmin +$(/usr/lib/php5/maxlifetime) -delete)
Jan 13 10:17:01 zebra852 /USR/SBIN/CRON[6852]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Jan 13 10:39:01 zebra852 /USR/SBIN/CRON[7095]: (root) CMD (  [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -type f -cmin +$(/usr/lib/php5/maxlifetime) -delete)
Jan 13 11:03:01 zebra852 /usr/sbin/cron[883]: (*system*php5) RELOAD (/etc/cron.d/php5)
Jan 13 11:17:01 zebra852 /USR/SBIN/CRON[10105]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Jan 13 11:33:21 zebra852 postfix/pickup[6915]: 5286023AE1EE: uid=33 from=<www-data>
Jan 13 11:33:21 zebra852 postfix/cleanup[18897]: 5286023AE1EE: message-id=<[email protected]>
Jan 13 11:33:21 zebra852 postfix/qmgr[969]: 5286023AE1EE: from=<[email protected]>, size=1135, nrcpt=1 (queue active)
Jan 13 11:33:21 zebra852 postfix/smtp[18900]: 5286023AE1EE: to=<[email protected]>, relay=mx-ha01.web.de[217.72.192.149]:25, delay=0.35, delays=0.03/0/0.15/0.17, dsn=2.0.0, status=sent (250 OK id=1RleRp-0007RX-00)
Jan 13 11:33:21 zebra852 postfix/qmgr[969]: 5286023AE1EE: removed
Jan 13 11:34:00 zebra852 postfix/pickup[6915]: 464D723AE1EE: uid=33 from=<www-data>
Jan 13 11:34:00 zebra852 postfix/cleanup[18897]: 464D723AE1EE: message-id=<[email protected]>
Jan 13 11:34:00 zebra852 postfix/qmgr[969]: 464D723AE1EE: from=<[email protected]>, size=1076, nrcpt=1 (queue active)
Jan 13 11:34:00 zebra852 postfix/smtp[18900]: connect to mx-ha02.web.de[217.72.192.188]:25: Connection refused
Jan 13 11:34:00 zebra852 postfix/smtp[18900]: connect to mx-ha01.web.de[217.72.192.149]:25: Connection refused
Jan 13 11:34:00 zebra852 postfix/smtp[18900]: 464D723AE1EE: to=<[email protected]>, relay=none, delay=0.02, delays=0.01/0/0.02/0, dsn=4.4.1, status=deferred (connect to mx-ha01.web.de[217.72.192.149]:25: Connection refused)
Jan 13 11:39:01 zebra852 /USR/SBIN/CRON[19044]: (root) CMD (  [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -type f -cmin +$(/usr/lib/php5/maxlifetime) -delete)
Jan 13 11:43:33 zebra852 postfix/qmgr[969]: 464D723AE1EE: from=<[email protected]>, size=1076, nrcpt=1 (queue active)
Jan 13 11:43:33 zebra852 postfix/smtp[19097]: 464D723AE1EE: to=<[email protected]>, relay=mx-ha02.web.de[217.72.192.188]:25, delay=573, delays=573/0.01/0.13/0.04, dsn=2.0.0, status=sent (250 OK id=1Rlebh-0006rR-00)
Jan 13 11:43:33 zebra852 postfix/qmgr[969]: 464D723AE1EE: removed
Jan 13 12:09:01 zebra852 /USR/SBIN/CRON[19235]: (root) CMD (  [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -type f -cmin +$(/usr/lib/php5/maxlifetime) -delete)
Jan 13 12:17:01 zebra852 /USR/SBIN/CRON[19295]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Jan 13 12:39:01 zebra852 /USR/SBIN/CRON[19434]: (root) CMD (  [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -type f -cmin +$(/usr/lib/php5/maxlifetime) -delete)
Jan 13 12:44:36 zebra852 postfix/pickup[19190]: 07F1723AE1EF: uid=33 from=<www-data>
Jan 13 12:44:36 zebra852 postfix/cleanup[19516]: 07F1723AE1EF: message-id=<[email protected]>
Jan 13 12:44:36 zebra852 postfix/qmgr[969]: 07F1723AE1EF: from=<[email protected]>, size=1145, nrcpt=1 (queue active)
Jan 13 12:44:36 zebra852 postfix/smtp[19519]: 07F1723AE1EF: to=<[email protected]>, relay=mx-ha01.web.de[217.72.192.149]:25, delay=0.1, delays=0.02/0/0.04/0.03, dsn=2.0.0, status=sent (250 OK id=1RlfYm-0008Dj-00)
Jan 13 12:44:36 zebra852 postfix/qmgr[969]: 07F1723AE1EF: removed
Jan 13 13:09:01 zebra852 /USR/SBIN/CRON[19924]: (root) CMD (  [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -type f -cmin +$(/usr/lib/php5/maxlifetime) -delete)
Jan 13 13:17:01 zebra852 /USR/SBIN/CRON[20000]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Jan 13 13:39:01 zebra852 /USR/SBIN/CRON[20290]: (root) CMD (  [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -type f -cmin +$(/usr/lib/php5/maxlifetime) -delete)
Jan 13 13:48:44 zebra852 postfix/pickup[20311]: 555B123AE1EF: uid=33 from=<www-data>
Jan 13 13:48:44 zebra852 postfix/cleanup[20449]: 555B123AE1EF: message-id=<[email protected]>
Jan 13 13:48:44 zebra852 postfix/qmgr[969]: 555B123AE1EF: from=<[email protected]>, size=1070, nrcpt=1 (queue active)
Jan 13 13:48:48 zebra852 postfix/smtp[20452]: 555B123AE1EF: to=<[email protected]>, relay=mailin-04.mx.aol.com[205.188.146.194]:25, delay=3.9, delays=0.01/0/2.1/1.8, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as A9FE538000085)
Jan 13 13:48:48 zebra852 postfix/qmgr[969]: 555B123AE1EF: removed
Jan 13 13:51:26 zebra852 postfix/pickup[20311]: 6E6FF23AE1EF: uid=33 from=<www-data>
Jan 13 13:51:26 zebra852 postfix/cleanup[20492]: 6E6FF23AE1EF: message-id=<[email protected]>
Jan 13 13:51:26 zebra852 postfix/qmgr[969]: 6E6FF23AE1EF: from=<[email protected]>, size=926, nrcpt=1 (queue active)
Jan 13 13:51:30 zebra852 postfix/smtp[20495]: 6E6FF23AE1EF: host mailin-02.mx.aol.com[64.12.90.65] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 13:51:35 zebra852 postfix/smtp[20495]: 6E6FF23AE1EF: host mailin-01.mx.aol.com[205.188.59.194] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 13:51:36 zebra852 postfix/smtp[20495]: 6E6FF23AE1EF: host mailin-04.mx.aol.com[64.12.90.34] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 13:51:39 zebra852 postfix/smtp[20495]: 6E6FF23AE1EF: host mailin-04.mx.aol.com[64.12.138.161] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 13:51:39 zebra852 postfix/smtp[20495]: 6E6FF23AE1EF: to=<[email protected]>, relay=mailin-01.mx.aol.com[64.12.90.98]:25, delay=13, delays=0.02/0/13/0, dsn=4.7.1, status=deferred (host mailin-01.mx.aol.com[64.12.90.98] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html)
Jan 13 13:54:12 zebra852 postfix/pickup[20311]: B552323AE1F0: uid=33 from=<www-data>
Jan 13 13:54:12 zebra852 postfix/cleanup[20559]: B552323AE1F0: message-id=<[email protected]>
Jan 13 13:54:12 zebra852 postfix/qmgr[969]: B552323AE1F0: from=<[email protected]>, size=1070, nrcpt=1 (queue active)
Jan 13 13:54:16 zebra852 postfix/smtp[20562]: B552323AE1F0: host mailin-02.mx.aol.com[205.188.190.1] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 13:54:19 zebra852 postfix/smtp[20562]: B552323AE1F0: host mailin-01.mx.aol.com[64.12.90.1] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 13:54:20 zebra852 postfix/smtp[20562]: B552323AE1F0: host mailin-04.mx.aol.com[64.12.90.66] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 13:54:24 zebra852 postfix/smtp[20562]: B552323AE1F0: host mailin-02.mx.aol.com[205.188.103.1] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 13:54:27 zebra852 postfix/smtp[20562]: B552323AE1F0: to=<[email protected]>, relay=mailin-03.mx.aol.com[64.12.90.97]:25, delay=15, delays=0.01/0/15/0, dsn=4.7.1, status=deferred (host mailin-03.mx.aol.com[64.12.90.97] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html)
Jan 13 13:58:33 zebra852 postfix/qmgr[969]: 6E6FF23AE1EF: from=<[email protected]>, size=926, nrcpt=1 (queue active)
Jan 13 13:58:35 zebra852 postfix/smtp[20639]: 6E6FF23AE1EF: host mailin-04.mx.aol.com[205.188.103.2] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 13:58:37 zebra852 postfix/smtp[20639]: 6E6FF23AE1EF: host mailin-03.mx.aol.com[205.188.156.193] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 13:58:43 zebra852 postfix/smtp[20639]: 6E6FF23AE1EF: host mailin-03.mx.aol.com[205.188.190.2] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 13:58:46 zebra852 postfix/smtp[20639]: 6E6FF23AE1EF: host mailin-03.mx.aol.com[64.12.90.33] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 13:58:48 zebra852 postfix/smtp[20639]: 6E6FF23AE1EF: to=<[email protected]>, relay=mailin-04.mx.aol.com[64.12.90.34]:25, delay=442, delays=427/0.01/15/0, dsn=4.7.1, status=deferred (host mailin-04.mx.aol.com[64.12.90.34] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html)
Jan 13 14:03:33 zebra852 postfix/qmgr[969]: B552323AE1F0: from=<[email protected]>, size=1070, nrcpt=1 (queue active)
Jan 13 14:03:34 zebra852 postfix/smtp[20704]: B552323AE1F0: host mailin-01.mx.aol.com[205.188.159.42] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 14:03:35 zebra852 postfix/smtp[20704]: B552323AE1F0: host mailin-04.mx.aol.com[205.188.103.2] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 14:03:37 zebra852 postfix/smtp[20704]: B552323AE1F0: host mailin-01.mx.aol.com[205.188.146.193] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 14:03:39 zebra852 postfix/smtp[20704]: B552323AE1F0: host mailin-01.mx.aol.com[64.12.90.98] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 14:03:40 zebra852 postfix/smtp[20704]: B552323AE1F0: to=<[email protected]>, relay=mailin-03.mx.aol.com[64.12.90.97]:25, delay=568, delays=561/0.01/7/0, dsn=4.7.1, status=deferred (host mailin-03.mx.aol.com[64.12.90.97] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html)
Jan 13 14:08:33 zebra852 postfix/qmgr[969]: 6E6FF23AE1EF: from=<[email protected]>, size=926, nrcpt=1 (queue active)
Jan 13 14:08:35 zebra852 postfix/smtp[20796]: 6E6FF23AE1EF: host mailin-03.mx.aol.com[205.188.59.193] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 14:08:40 zebra852 postfix/smtp[20796]: 6E6FF23AE1EF: host mailin-02.mx.aol.com[64.12.139.193] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 14:08:44 zebra852 postfix/smtp[20796]: 6E6FF23AE1EF: host mailin-04.mx.aol.com[64.12.138.161] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 14:08:49 zebra852 postfix/smtp[20796]: 6E6FF23AE1EF: host mailin-04.mx.aol.com[205.188.146.194] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 14:08:52 zebra852 postfix/smtp[20796]: 6E6FF23AE1EF: to=<[email protected]>, relay=mailin-03.mx.aol.com[64.12.90.33]:25, delay=1046, delays=1027/0.01/19/0, dsn=4.7.1, status=deferred (host mailin-03.mx.aol.com[64.12.90.33] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html)
Jan 13 14:09:01 zebra852 /USR/SBIN/CRON[20806]: (root) CMD (  [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -type f -cmin +$(/usr/lib/php5/maxlifetime) -delete)
Jan 13 14:12:16 zebra852 postfix/pickup[20311]: 4862D23AE1F2: uid=33 from=<www-data>
Jan 13 14:12:16 zebra852 postfix/cleanup[20845]: 4862D23AE1F2: message-id=<[email protected]>
Jan 13 14:12:16 zebra852 postfix/qmgr[969]: 4862D23AE1F2: from=<[email protected]>, size=1178, nrcpt=1 (queue active)
Jan 13 14:12:17 zebra852 postfix/smtp[20848]: 4862D23AE1F2: to=<[email protected]>, relay=mx4.hotmail.com[65.55.37.120]:25, delay=1.5, delays=0.37/0/0.48/0.67, dsn=2.0.0, status=sent (250  <[email protected]> Queued mail for delivery)
Jan 13 14:12:17 zebra852 postfix/qmgr[969]: 4862D23AE1F2: removed
Jan 13 14:13:33 zebra852 postfix/qmgr[969]: B552323AE1F0: from=<[email protected]>, size=1070, nrcpt=1 (queue active)
Jan 13 14:13:35 zebra852 postfix/smtp[20848]: B552323AE1F0: host mailin-01.mx.aol.com[64.12.90.1] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 14:13:38 zebra852 postfix/smtp[20848]: B552323AE1F0: host mailin-01.mx.aol.com[64.12.90.98] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 14:13:40 zebra852 postfix/smtp[20848]: B552323AE1F0: host mailin-03.mx.aol.com[64.12.90.33] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 14:13:42 zebra852 postfix/smtp[20848]: B552323AE1F0: host mailin-04.mx.aol.com[64.12.138.161] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 14:13:44 zebra852 postfix/smtp[20848]: B552323AE1F0: to=<[email protected]>, relay=mailin-04.mx.aol.com[64.12.90.66]:25, delay=1171, delays=1161/0/11/0, dsn=4.7.1, status=deferred (host mailin-04.mx.aol.com[64.12.90.66] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html)
Jan 13 14:17:01 zebra852 /USR/SBIN/CRON[20942]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Jan 13 14:28:33 zebra852 postfix/qmgr[969]: 6E6FF23AE1EF: from=<[email protected]>, size=926, nrcpt=1 (queue active)
Jan 13 14:28:35 zebra852 postfix/smtp[21062]: 6E6FF23AE1EF: host mailin-03.mx.aol.com[205.188.156.193] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 14:28:35 zebra852 postfix/smtp[21062]: connect to mailin-03.mx.aol.com[64.12.90.33]:25: Connection refused
Jan 13 14:28:38 zebra852 postfix/smtp[21062]: 6E6FF23AE1EF: host mailin-01.mx.aol.com[205.188.59.194] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 14:28:38 zebra852 postfix/smtp[21062]: connect to mailin-04.mx.aol.com[64.12.90.34]:25: Connection refused
Jan 13 14:28:40 zebra852 postfix/smtp[21062]: 6E6FF23AE1EF: to=<[email protected]>, relay=mailin-03.mx.aol.com[205.188.59.193]:25, delay=2234, delays=2227/0.01/7.7/0, dsn=4.7.1, status=deferred (host mailin-03.mx.aol.com[205.188.59.193] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html)
Jan 13 14:33:33 zebra852 postfix/qmgr[969]: B552323AE1F0: from=<[email protected]>, size=1070, nrcpt=1 (queue active)
Jan 13 14:33:38 zebra852 postfix/smtp[21113]: B552323AE1F0: host mailin-03.mx.aol.com[64.12.90.97] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 14:33:39 zebra852 postfix/smtp[21113]: B552323AE1F0: host mailin-04.mx.aol.com[64.12.138.161] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 14:33:40 zebra852 postfix/smtp[21113]: B552323AE1F0: host mailin-01.mx.aol.com[64.12.90.1] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 14:33:42 zebra852 postfix/smtp[21113]: B552323AE1F0: host mailin-02.mx.aol.com[205.188.190.1] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 14:33:45 zebra852 postfix/smtp[21113]: B552323AE1F0: to=<[email protected]>, relay=mailin-02.mx.aol.com[64.12.90.65]:25, delay=2373, delays=2361/0.01/12/0, dsn=4.7.1, status=deferred (host mailin-02.mx.aol.com[64.12.90.65] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html)
Jan 13 14:39:01 zebra852 /USR/SBIN/CRON[21189]: (root) CMD (  [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -type f -cmin +$(/usr/lib/php5/maxlifetime) -delete)
Jan 13 15:08:33 zebra852 postfix/qmgr[969]: 6E6FF23AE1EF: from=<[email protected]>, size=926, nrcpt=1 (queue active)
Jan 13 15:08:36 zebra852 postfix/smtp[21555]: 6E6FF23AE1EF: host mailin-04.mx.aol.com[64.12.90.34] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 15:08:38 zebra852 postfix/smtp[21555]: 6E6FF23AE1EF: host mailin-03.mx.aol.com[64.12.90.97] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 15:08:40 zebra852 postfix/smtp[21555]: 6E6FF23AE1EF: host mailin-03.mx.aol.com[64.12.90.33] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 15:08:43 zebra852 postfix/smtp[21555]: 6E6FF23AE1EF: host mailin-01.mx.aol.com[64.12.90.98] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 15:08:46 zebra852 postfix/smtp[21555]: 6E6FF23AE1EF: to=<[email protected]>, relay=mailin-02.mx.aol.com[205.188.190.1]:25, delay=4640, delays=4627/0.01/13/0, dsn=4.7.1, status=deferred (host mailin-02.mx.aol.com[205.188.190.1] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html)
Jan 13 15:09:01 zebra852 /USR/SBIN/CRON[21573]: (root) CMD (  [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -type f -cmin +$(/usr/lib/php5/maxlifetime) -delete)
Jan 13 15:13:33 zebra852 postfix/qmgr[969]: B552323AE1F0: from=<[email protected]>, size=1070, nrcpt=1 (queue active)
Jan 13 15:13:34 zebra852 postfix/smtp[21653]: B552323AE1F0: host mailin-04.mx.aol.com[205.188.146.194] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 15:13:37 zebra852 postfix/smtp[21653]: B552323AE1F0: host mailin-01.mx.aol.com[205.188.59.194] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 15:13:39 zebra852 postfix/smtp[21653]: B552323AE1F0: host mailin-03.mx.aol.com[205.188.156.193] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 15:13:41 zebra852 postfix/smtp[21653]: B552323AE1F0: host mailin-01.mx.aol.com[205.188.159.42] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html
Jan 13 15:13:43 zebra852 postfix/smtp[21653]: B552323AE1F0: to=<[email protected]>, relay=mailin-02.mx.aol.com[64.12.90.65]:25, delay=4771, delays=4761/0.01/9.6/0, dsn=4.7.1, status=deferred (host mailin-02.mx.aol.com[64.12.90.65] refused to talk to me: 421 4.7.1 : (DYN:T1) http://postmaster.info.aol.com/errors/421dynt1.html)
Jan 13 15:17:01 zebra852 /USR/SBIN/CRON[21708]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Jan 13 15:39:01 zebra852 /USR/SBIN/CRON[22051]: (root) CMD (  [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -type f -cmin +$(/usr/lib/php5/maxlifetime) -delete)

Ja kann hinkommen das ich ihn 1 bis Maximal 2 mal selber restartet habe, aber die anderen male nicht!

Ich weiß leider echt nicht weiter, zumal nichts dran geändert wurde & ich auch der einzigste bin der Zugriff hat.
 
Poste doch bitte mal den output von von crontab -e


Code:
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user	command
17 *	* * *	root    cd / && run-parts --report /etc/cron.hourly
25 6	* * *	root	test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6	* * 7	root	test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6	1 * *	root	test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
#
28  5 * * * root /usr/sbin/ntpdate ntp2.intergenia.de >/dev/null 2>&1


Code:
[Fri Jan 13 11:03:04 2012] [notice] caught SIGTERM, shutting down
[Fri Jan 13 11:03:05 2012] [notice] Apache/2.2.16 (Debian) configured -- resuming normal operations
[Fri Jan 13 11:12:12 2012] [notice] Graceful restart requested, doing restart
[Fri Jan 13 11:12:12 2012] [notice] Apache/2.2.16 (Debian) configured -- resuming normal operations
[Fri Jan 13 11:16:06 2012] [notice] Graceful restart requested, doing restart
[Fri Jan 13 11:16:06 2012] [notice] Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze3 with Suhosin-Patch configured -- resuming normal operations
[Fri Jan 13 11:16:16 2012] [notice] caught SIGTERM, shutting down
[Fri Jan 13 11:16:17 2012] [notice] Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze3 with Suhosin-Patch configured -- resuming normal operations
[Fri Jan 13 11:21:21 2012] [notice] Graceful restart requested, doing restart
[Fri Jan 13 11:21:21 2012] [notice] Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze3 with Suhosin-Patch configured -- resuming normal operations
[Fri Jan 13 11:21:36 2012] [notice] Graceful restart requested, doing restart
[Fri Jan 13 11:21:36 2012] [notice] Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze3 with Suhosin-Patch configured -- resuming normal operations
[Fri Jan 13 11:22:39 2012] [notice] Graceful restart requested, doing restart
[Fri Jan 13 11:22:39 2012] [notice] Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze3 with Suhosin-Patch configured -- resuming normal operations
[Fri Jan 13 11:22:53 2012] [notice] caught SIGTERM, shutting down
[Fri Jan 13 11:22:54 2012] [notice] Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze3 with Suhosin-Patch mod_perl/2.0.4 Perl/v5.10.1 configured -- resuming normal operations
[Fri Jan 13 11:32:00 2012] [notice] caught SIGTERM, shutting down
[Fri Jan 13 11:32:01 2012] [notice] Apache/2.2.16 (Debian) PHP/5.3.3-7+squeeze3 with Suhosin-Patch mod_perl/2.0.4 Perl/v5.10.1 configured -- resuming normal operations
[Fri Jan 13 16:02:50 2012] [error] server reached MaxClients setting, consider raising the MaxClients setting
[Fri Jan 13 21:49:19 2012] [notice] child pid 27592 exit signal Segmentation fault (11)
[Fri Jan 13 23:12:14 2012] [notice] child pid 28263 exit signal Segmentation fault (11)

So sieht die Error.log von apache2 nun aus...

Syslog sagt nichts der gleichen aus
 
Last edited by a moderator:
Back
Top