leider hab ich keinen plan woran das liegen kann.
hier ein ausschnitt aus der confixx_vhost.conf
Code: Select all
NameVirtualHost xxx.xxx.xxx
php_admin_flag safe_mode On
php_admin_value safe_mode_exec_dir /home/www/empty
UseCanonicalName Off
LogFormat "%V:#:%h %l %u %t "%r" %s %b "%{Referer}i" "%{User-agent}i"" confixx
LogFormat "%h %l %u %t "%r" %s %b "%{Referer}i" "%{User-agent}i"" confixx2
CustomLog |/root/confixx/pipelog.pl confixx
<Directory "/home/www">
<Files ~ "^.ht">
deny from all
</Files>
Code: Select all
#!/usr/bin/perl
###### Confixx-Apache-PipeLog
## zum Loggen der Webzugriffe pro User
########## erstellt am Thu Oct 28 08:18:02 2004 ###
$logDir = "/var/log/httpd/confixx/domains/access";
$stdLog = "/var/log/httpd/confixx/stdlog_access";
while(<STDIN>){
($domain, $log) = split(/:#:/, $_);
$domain = lc($domain);
if(-l "$logDir/$domain"){
open(LOG, ">>$logDir/$domain") or next;
print LOG $log;
close(LOG);
}else{
open(LOG, ">>$stdLog") or next;
print LOG "$domain :: $log";
close(LOG);
}
}DANKE
Jörg
Bin mir sicher das ich das verbockt habe mit der installation von awstats, weil seit dem datum der fehler auftritt, kann es sein das in der crontab was fehlt oder so?
kann es was mit der logrotate zu tun haben ?
ich glaube ich komme der sache näher *g*
ok mit der logrotate hat es wohl nichts zu tun.
auch die access_log unter var/log/httpd ist schon 800MB groß habe gerade mal die cron-daily ausgeführt nützt nichts
es scheint an der httpd.conf zu liegen ?
Code: Select all
#
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
#
LogFormat "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i"" combined
LogFormat "%h %l %u %t "%r" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
#
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a <VirtualHost>
# container, they will be logged here. Contrariwise, if you *do*
# define per-<VirtualHost> access logfiles, transactions will be
# logged therein and *not* in this file.
#
CustomLog /var/log/httpd/access_log combined
#
# If you would like to have agent and referer logfiles, uncomment the
# following directives.
#
#CustomLog /var/log/httpd/referer_log referer
#CustomLog /var/log/httpd/agent_log agent
#
# If you prefer a single logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#
#CustomLog /var/log/httpd/access_log combined
