Настройка логов Apache

Ответить
Woin
Сообщения: 436
Зарегистрирован: 28.12.2009
Вообщем настроил логи доступа у себя в апаче...
Хотел бы узнать что означает цифра
IP чей-то - - [01/Sep/2009:15:07:48 +0400] "GET / HTTP/1.1" 200 11805
Вообще где про это можно почитать?
Ответ:
"GET - метод
/ - запрашиваемая дериктория
HTTP/1.1" - версия http
200 - код ответа сервера
11805 - длина запроса
думаю http://www.cyberguru.ru/web/web-servers ... -logs.html поможет

Вопрос №2

Код: Выделить всё

%{User-agent} - тип браузера посетителя.
Ответ:

файл httpd.conf
LoadModule log_config_module modules/mod_log_config.so
...
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn

<IfModule log_config_module>
#
# 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

<IfModule logio_module>
# You need to enable mod_logio.c to use %I and %O
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>

#
# 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 logs/access.log common

#
# If you prefer a logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#
#CustomLog logs/access.log combined
</IfModule>

...
файл httpd-vhosts.conf
<VirtualHost *:80>
...
ErrorLog "logs/dummy-host.x-error.log"
CustomLog "logs/dummy-host.x-access.log" combined
</VirtualHost>
если лог ведется только один (нет виртуальных хостов) то достаточно

закомментировать
#CustomLog logs/access.log common

и раскомментировать
CustomLog logs/access.log combined

Woin
Сообщения: 436
Зарегистрирован: 28.12.2009
Итог:

Код: Выделить всё

IP чей-то - - [02/Sep/2009:22:30:55 +0400] "GET / HTTP/1.1" 200 12199 "http://coder.v-tanke.ru/viewtopic.php?f=6&p=33#p33" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/525.19 (KHTML, like Gecko) Chrome/1.0.154.65 Safari/525.19"

Ответить