Hallo Board :-)
Ich hab ein Problem mit dem Apachen und zwar habe ich die "file descriptor" Grenze erreicht, weil ich zuviele namensbasierte virtuelle hosts habe.
http://httpd.apache.org/docs-2.0/misc/descriptors.html
Jetzt muss ich wieder eine Log Datei benutzen und mit dem splitlog.pl Skript von Apache diese für jeden Host wieder teilen.
Das Problem dabei ist ich kann kein Perl.....
/var/log/httpd/access_log ist die Log Datei und die geteilten Log Dateien sollen jeweils in das home Verzeichnis des jeweiligen virtuellen Hosts.
Also sprich /home/vhost1/logs/access.log, /home/vhost2/logs/access.log, ....
Die CustomLog Direktive habe ich bereits richtig und ein Auszug aus dem Log wäre z.B.:
vhost1.org 111.222.111.222 - - [18/Mar/2005:15:45:17 +0100] "GET / HTTP/1.1" 200 1207 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"
Ich bin jedem sehr dankbar der mir dabei hilft!
Vielen Dank im voraus!
Zu guter letzt noch das Skript das Apache zur Verfügung stellt.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!@perlbin@
#
# This script will take a combined Web server access
# log file and break its contents into separate files.
# It assumes that the first field of each line is the
# virtual host identity (put there by "%v"), and that
# the logfiles should be named that+".log" in the current
# directory.
#
# The combined log file is read from stdin. Records read
# will be appended to any existing log files.
#
%is_open = ();
while ($log_line = <STDIN>) {
#
# Get the first token from the log record; it's the
# identity of the virtual host to which the record
# applies.
#
($vhost) = split (/\s/, $log_line);
#
# Normalize the virtual host name to all lowercase.
# If it's blank, the request was handled by the default
# server, so supply a default name. This shouldn't
# happen, but caution rocks.
#
$vhost = lc ($vhost) or "access";
#
# if the vhost contains a "/" or "\", it is illegal so just use
# the default log to avoid any security issues due if it is interprted
# as a directory separator.
if ($vhost =~ m#[/\\]#) { $vhost = "access" }
#
# If the log file for this virtual host isn't opened
# yet, do it now.
#
if (! $is_open{$vhost}) {
open $vhost, ">>${vhost}.log"
or die ("Can't open ${vhost}.log");
$is_open{$vhost} = 1;
}
#
# Strip off the first token (which may be null in the
# case of the default server), and write the edited
# record to the current log file.
#
$log_line =~ s/^\S*\s+//;
printf $vhost "%s", $log_line;
}
exit 0;
\n\n
<!--EDIT|renee|1111160925-->