Typically, under the Bea/user_projects/domains/xxxdomain/servers/adminserver/logs directory, the file name is Access.log.
Usually there are access.log00001, access.log00002, access.log00003 and so on dozens of files, these files are a circular log of access.log.
Open Access.log, the following records are visible
11.137.121.212--[09/December/2009:15:27:15 +0800] "get/piccclaim/style/index.css http/1.1" 200 100 11.137.121.212--[09/10 February/2009:15:27:15 +0800] "get/piccclaim/style/index.css http/1.1" 200 100 11.137.121.212--[09/December/2009:15:27:15 +0800] "Get/piccclaim/acegilogin.jsp http/1.1" 200 1203
The format is:
Visitor IP RFC931 auth_user [access Time] "request method (Get/post, etc.) Access address Access Protocol (typically http/1.1)" Return code (200 for success) returns the size of the bytes of data
The English version is as follows:
Using Common Log Format
The default format for logged HTTP information is the common log format. This standard format follows the pattern:
Host RFC931 Auth_User [Day/month/year:hour:minute:second utc_offset] "request" status bytes
Host:either the DNS name or the IP number of the remote client
Rfc931:any information returned by IDENTD for the remote client; WebLogic does not support user identification
Auth_user:if remote Client user sent a userid for authentication, the user name; Otherwise "-"
Day/month/year:hour:minute:second Utc_offset Day, calendar month, year and time of day (24-hour format) with the hours dif Ference between local time and GMT, enclose in square brackets
Request:first line of the HTTP request submitted by the remote client enclosed in double quotes
Status:http status code returned by the server, if available; Otherwise "-"
Bytes:number of bytes listed as the Content-length in the http/1.0 header, not including the http/1.0 header, if kn Own Otherwise "-"
The English explanation can be consulted:
Http://cn.forums.oracle.com/forums/thread.jspa?threadID=914964&tstart=30