Posts Tagged ‘Apache’

18
Feb

Apache için basit bir log viewer

   Posted by: myownshadow    in Yazılım

#!/bin/
if [ ! -f /tmp/logcopy ]
then
echo "first run, copying log file"
cp /var/log/2/ /tmp/logcopy
fi
oldfilehash=`md5sum /tmp/logcopy | cut -d " " -f1`
newfilehash=`md5sum /var/log//access.log | cut -d " " -f1`
if [ "$oldfilehash" != "$newfilehash" ]; then
diff /var/log/apache2/access.log /tmp/logcopy > /tmp/logdiff
if [ ! $? -eq 0 ]; then
cat /tmp/logdiff | --title "Apache " --text-info --width 1024 --height 800
fi
cp -u /var/log/apache2/access.log /tmp/logcopy
fi
exit

/usr/local/bin altına kaydedip kullanabilirsiniz.

Bookmark and Share
Tags: , , , , , ,

Tags: , , , , , ,

27
Jan

apache access.log için python regex

   Posted by: Muhammed YÜRÜRDURMAZ    in Yazılım

r”"”(?P<karsi_taraf>[^ ]*) – (?P<kullanici>[^ ]*) \[(?P<tarih>[^\]]*)] “(?P<url>[^"]*)” (?P<cevap>[0-9]*) (?P<boyut>[0-9]*) “(?P<ref>[^"]*)” “(?P<browser>[^"]*)”"”

Bookmark and Share
Tags: , , ,

Tags: , , ,

Switch to our mobile site