Home Backend Development PHP Tutorial Error log configuration and access log configuration and log records

Error log configuration and access log configuration and log records

Jul 28, 2016 am 08:29 AM
access http log nbsp quot

错误log配置和访问log配置
[root@slave nginx]# vi /etc/nginx/nginx.conf
worker_processes  1;
error_log /var/log/nginx/error.log;
events {
     worker_connections  1024;
}
http {
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;
    keepalive_timeout  65;
    log_format comman '$remote_addr - $remote_user [$time_local] "$request" '
                     '$status $body_bytes_sent "$http_referer" '
                     '"$http_user_agent" "$request_body" "$request_time"';
    server {
        listen       80;
        server_name  www.wolf.com wolf.com;
        location / {
            root   html/www;
            index  index.html index.htm;
        }
    access_log  /var/log/nginx/www.log  comman;
    }
    server {
        listen       80;
        server_name  bbs.wolf.com;
        location / {
            root   html/bbs;
            index  index.html index.htm;
        }
    }
    server {
        listen       80;
        server_name  blog.wolf.com;
        location / {
            root   html/blog;
            index  index.html index.htm;
        }
    }
   ##status
   server {
        listen       80;
        server_name  status.wolf.com;
        location / {
            stub_status on;
            access_log off;
        }
    }
}
配置完毕,测试如下
[root@slave nginx]# curl www.wolf.com
http://www.wolf.com
[root@slave nginx]# tail -f www.log
192.168.0.203 - - [11/Jun/2016:16:26:52 +0800] "GET / HTTP/1.1" 200 20 "-" "curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.14.0.0 zlib/1.2.3 libidn/1.18 libssh2/1.4.2" "-" "0.000"

通过浏览器访问测试

============================================================

Logs are very beneficial for statistical troubleshooting.
This article summarizes nginx log-related configurations such as access_log, log_format, open_log_file_cache
, log_not_found, log_subrequest, rewrite_log, error_log.
nginx has a very flexible logging mode. Each level of configuration can have its own independent access log.
The log format is defined through the log_format command.
ngx_http_log_module is used to define the request log format.
1. access_log command
Syntax: access_log path [format [buffer=size [flush=time]]];
access_log path format gzip[=level] [buffer=size] [flush=time];
access_log syslog:server= address[,parameter=value] [format];
access_log off;
Default value: access_log logs/access.log combined;
Configuration section: http, server, location, if in location, limit_except
gzip compression level.
buffer sets the memory buffer size.
The maximum time flush is saved in the cache area.
Do not record logs: access_log off;
Use the default combined format to record logs: access_log logs/access.log or access_log logs/access.log combined;
2. log_format command
Syntax: log_format name string…;
Default value: log_format combined "...";
Configuration section: http
name represents the format name, and string represents the equivalent format.
log_format has a default combined log format that does not need to be set, which is equivalent to apache's combined log format, as shown below:
log_format combined '$remote_addr - $remote_user [$time_local]'
                                                                                                                                                                               
                      ' "$http_referer" "$http_user_agent" ';
If nginx is behind a load balancer, squid, or nginx reverse proxy, the web server cannot directly obtain the client's real IP address.
$remote_addr gets the IP address of the reverse proxy. The reverse proxy server can add X-Forwarded-For information in the http header information of the forwarded request, which is used to record the client IP address and the server address requested by the client.
PS: Get the user's real IP. See http://www.ttlsa.com/html/2235.html as follows:
log_format porxy '$http_x_forwarded_for - $remote_user [$time_local]'
 body_bytes_sent '
' "$http_referer" "$http_user_agent" ';
The log format allows variable annotations as follows:
$remote_addr, $http_x_forwarded_for records the client IP address
$remote_user records the client user name
$request records the requested URL And HTTP protocol
$status records request status
$body_bytes_sent The number of bytes sent to the client, excluding the size of the response header; This variable is compatible with the "%B" parameter in the Apache module mod_log_config.
$bytes_sent The total number of bytes sent to the client.
$connection The serial number of the connection.
$connection_requests The current number of requests received through a connection.
$msec log writing time. The unit is seconds and the precision is milliseconds.
$pipe If the request is sent through HTTP pipeline (pipelined), the pipe value is "p", otherwise it is ".".
$http_referer records which page link is accessed from
$http_user_agent records client browser related information
$request_length The length of the request (including request line, request header and request body).
$request_time Request processing time, unit is seconds, precision is milliseconds; starting from the first byte read into the client until the last character is sent to the client and the log is written.
$time_iso8601 Local time in ISO8601 standard format.
$time_local local time in common log format.
[warning]The response header sent to the client has the "sent_http_" prefix. For example $sent_http_content_range. [/warning]
The example is as follows:
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '                                                                                "$http_user_agent" "$ http_x_forwarded_for" '
' '
                        '"$status" $body_bytes_sent $request_time $bytes_sent $request_length '
                      '[$upstream_response_time] [$srcache_fetch_status] [$srcache_store_status] [$srcache_expire]';

open_log_file_cache max=1000 inactive=60s;

server {
server_name ~^(www.)?(.+)$;
access_log logs/$2-access.log main;
error_log logs/$2-error.log;

location /srcache {
access_log logs/access-srcache.log srcache_log;
Syntax: open_log_file_cache max=N [inactive=time] [min_uses=N] [valid=time];
open_log_file_cache off;
Default value: open_log_file_cache off;
Configuration section: http, server, location
For each log record, The file will be opened first, then written to the log, and then closed. You can use open_log_file_cache to set the log file cache (default is off), the format is as follows:
Parameter comments are as follows:
max: Set the maximum number of file descriptors in the cache. If the cache is full, use the LRU algorithm to close the descriptors.
inactive: Set the survival time, the default is 10s
min_uses: Set the minimum number of times the log file is used during the inactive time period before the log file descriptor is recorded in the cache, the default is 1 time
valid: Set the check frequency, the default 60s
off: Disable cache
The example is as follows:
open_log_file_cache max=1000 inactive=20s valid=1m min_uses=2;
4. log_not_found instruction
Syntax: log_not_found on | off;
Default value: log_not_found on;
Configuration section: http , server, location
Whether to record non-existent errors in error_log. The default is yes.
5. log_subrequest command
Syntax: log_subrequest on | off;
Default value: log_subrequest off;
Configuration section: http, server, location
Whether to record the access log of subrequests in access_log. Not logged by default.
6. The rewrite_log command
is provided by the ngx_http_rewrite_module module. Used to record rewrite logs. It is recommended to enable debugging rewrite rules. Nginx rewrite rule guide
Syntax: rewrite_log on | off;
Default value: rewrite_log off;
Configuration section: http, server, location, if
When enabled, notice-level rewrite logs will be recorded in the error log.
7. error_log command
Syntax: error_log file | stderr | syslog:server=address[,parameter=value] [debug | info | notice | warn | error | crit | alert | emerg];
Default value: error_log logs/error .log error;
Configuration section: main, http, server, location
Configuration error log.


This article summarizes nginx log-related configurations such as access_log, log_format, open_log_file_cache
, log_not_found, log_subrequest, rewrite_log, error_log.
nginx has a very flexible logging mode. Each level of configuration can have its own independent access log.
The log format is defined through the log_format command.
ngx_http_log_module is used to define the request log format.
1. access_log command
Syntax: access_log path [format [buffer=size [flush=time]]];
access_log path format gzip[=level] [buffer=size] [flush=time];
access_log syslog:server= address[,parameter=value] [format];
access_log off;
Default value: access_log logs/access.log combined;
Configuration section: http, server, location, if in location, limit_except
gzip compression level.
buffer sets the memory buffer size.
The maximum time flush is saved in the cache area.
Do not record logs: access_log off;
Use the default combined format to record logs: access_log logs/access.log or access_log logs/access.log combined;
2. log_format command
Syntax: log_format name string…;
Default value: log_format combined "...";
Configuration section: http
name represents the format name, and string represents the equivalent format.
log_format has a default combined log format that does not need to be set, which is equivalent to apache's combined log format, as shown below:
log_format combined '$remote_addr - $remote_user [$time_local]'
                                                                                                                                                                                                 "$request" $status $body_bytes_sent'
                      ' "$http_referer" "$http_user_agent" ';
If nginx is behind a load balancer, squid, or nginx reverse proxy, the web server cannot directly obtain the client's real IP address.
$remote_addr gets the IP address of the reverse proxy. The reverse proxy server can add X-Forwarded-For information in the http header information of the forwarded request, which is used to record the client IP address and the server address requested by the client.
PS: Get the user's real IP. See http://www.ttlsa.com/html/2235.html as follows:
log_format porxy '$http_x_forwarded_for - $remote_user [$time_local]'
 body_bytes_sent '
' "$http_referer" "$http_user_agent" ';
The variable comments allowed in the log format are as follows:
$remote_addr, $http_x_forwarded_for record the client IP address
$remote_user record the client user name
$request record the requested URL And HTTP protocol
$status records request status
$body_bytes_sent The number of bytes sent to the client, excluding the size of the response header; This variable is compatible with the "%B" parameter in the Apache module mod_log_config.
$bytes_sent The total number of bytes sent to the client.
$connection The serial number of the connection.
$connection_requests The current number of requests received through a connection.
$msec log writing time. The unit is seconds and the precision is milliseconds.
$pipe If the request is sent through HTTP pipeline (pipelined), the pipe value is "p", otherwise it is ".".
$http_referer records which page link is accessed from
$http_user_agent records client browser related information
$request_length The length of the request (including request line, request header and request body).
$request_time Request processing time, unit is seconds, precision is milliseconds; starting from the first byte read into the client until the last character is sent to the client and the log is written.
$time_iso8601 Local time in ISO8601 standard format.
$time_local local time in common log format.
[warning]The response header sent to the client has the "sent_http_" prefix. For example $sent_http_content_range. [/warning]
The example is as follows:
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '                                                                                            "$http_user_agent" "$ http_x_forwarded_for" '
' '
                      '"$status" $body_bytes_sent $request_time $bytes_sent $request_length '
                      '[$upstream_response_time] [$srcache_fetch_status] [$srcache_store_status] [$srcache_expire]';

open_log_file_cache max=1000 inactive=60s;

server {
server_name ~^(www.)?(.+)$;
access_log logs/$2-access.log main;
error_log logs/$2-error.log;

location /srcache {
access_log logs/access-srcache.log srcache_log;
Syntax: open_log_file_cache max=N [inactive=time] [min_uses=N] [valid=time];
open_log_file_cache off;
Default value: open_log_file_cache off;
Configuration section: http, server, location
For each log record, The file will be opened first, then written to the log, and then closed. You can use open_log_file_cache to set the log file cache (default is off), the format is as follows:
Parameter comments are as follows:
max: Set the maximum number of file descriptors in the cache. If the cache is full, use the LRU algorithm to close the descriptors.
inactive: Set the survival time, the default is 10s
min_uses: Set the minimum number of times the log file is used during the inactive time period before the log file descriptor is recorded in the cache, the default is 1 time
valid: Set the check frequency, the default 60s
off: Disable cache
The example is as follows:
open_log_file_cache max=1000 inactive=20s valid=1m min_uses=2;
4. log_not_found instruction
Syntax: log_not_found on | off;
Default value: log_not_found on;
Configuration section: http , server, location
Whether to record non-existent errors in error_log. The default is yes.
5. log_subrequest command
Syntax: log_subrequest on | off;
Default value: log_subrequest off;
Configuration section: http, server, location
Whether to record the access log of subrequests in access_log. Not logged by default.
6. The rewrite_log command
is provided by the ngx_http_rewrite_module module. Used to record rewrite logs. It is recommended to enable debugging rewrite rules. Nginx rewrite rule guide
Syntax: rewrite_log on | off;
Default value: rewrite_log off;
Configuration section: http, server, location, if
When enabled, notice-level rewrite logs will be recorded in the error log.
7. error_log command
Syntax: error_log file | stderr | syslog:server=address[,parameter=value] [debug | info | notice | warn | error | crit | alert | emerg];
Default value: error_log logs/error .log error;
Configuration section: main, http, server, location
Configuration error log.




The above has introduced the error log configuration, access log configuration and log records, including the content. I hope it will be helpful to friends who are interested in PHP tutorials.


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to disable background applications in Windows 11_Windows 11 tutorial to disable background applications How to disable background applications in Windows 11_Windows 11 tutorial to disable background applications May 07, 2024 pm 04:20 PM

1. Open settings in Windows 11. You can use Win+I shortcut or any other method. 2. Go to the Apps section and click Apps & Features. 3. Find the application you want to prevent from running in the background. Click the three-dot button and select Advanced Options. 4. Find the [Background Application Permissions] section and select the desired value. By default, Windows 11 sets power optimization mode. It allows Windows to manage how applications work in the background. For example, once you enable battery saver mode to preserve battery, the system will automatically close all apps. 5. Select [Never] to prevent the application from running in the background. Please note that if you notice that the program is not sending you notifications, failing to update data, etc., you can

How to convert deepseek pdf How to convert deepseek pdf Feb 19, 2025 pm 05:24 PM

DeepSeek cannot convert files directly to PDF. Depending on the file type, you can use different methods: Common documents (Word, Excel, PowerPoint): Use Microsoft Office, LibreOffice and other software to export as PDF. Image: Save as PDF using image viewer or image processing software. Web pages: Use the browser's "Print into PDF" function or the dedicated web page to PDF tool. Uncommon formats: Find the right converter and convert it to PDF. It is crucial to choose the right tools and develop a plan based on the actual situation.

What does field mean in java What does field mean in java Apr 25, 2024 pm 10:18 PM

In Java, a "field" is a data member in a class or interface that is used to store data or state. The properties of field include: type (can be any Java data type), access rights, static (belongs to a class rather than an instance), final (immutable) and transient (not serialized). Field is used to store state information of a class or interface, such as storing object data and maintaining object state.

How to read dbf file in oracle How to read dbf file in oracle May 10, 2024 am 01:27 AM

Oracle can read dbf files through the following steps: create an external table and reference the dbf file; query the external table to retrieve data; import the data into the Oracle table.

How does the Java reflection mechanism modify the behavior of a class? How does the Java reflection mechanism modify the behavior of a class? May 03, 2024 pm 06:15 PM

The Java reflection mechanism allows programs to dynamically modify the behavior of classes without modifying the source code. By operating the Class object, you can create instances through newInstance(), modify private field values, call private methods, etc. Reflection should be used with caution, however, as it can cause unexpected behavior and security issues, and has a performance overhead.

Common exception types and their repair measures in Java function development Common exception types and their repair measures in Java function development May 03, 2024 pm 02:09 PM

Common exception types and their repair measures in Java function development During the development of Java functions, various exceptions may be encountered, which affect the correct execution of the function. The following are common exception types and their repair measures: 1. NullPointerException Description: Thrown when accessing an object that has not been initialized. Fix: Make sure you check the object for non-null before using it. Sample code: try{Stringname=null;System.out.println(name.length());}catch(NullPointerExceptione){

How to cross-domain iframe in vue How to cross-domain iframe in vue May 02, 2024 pm 10:48 PM

Ways to solve iframe cross-domain issues in Vue: CORS: Enable CORS support in the backend server and use XMLHttpRequest or fetch API to send CORS requests in Vue. JSONP: Dynamically load JSONP scripts in Vue using the JSONP endpoint in the backend server. Proxy server: Set up a proxy server to forward requests, use a third-party library (such as axios) in Vue to send requests and set the proxy server URL.

How to implement HTTP streaming using C++? How to implement HTTP streaming using C++? May 31, 2024 am 11:06 AM

How to implement HTTP streaming in C++? Create an SSL stream socket using Boost.Asio and the asiohttps client library. Connect to the server and send an HTTP request. Receive HTTP response headers and print them. Receives the HTTP response body and prints it.

See all articles