• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

HTTP status 404 1141

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I am trying to access a file from the file-system under valid path, but tomcat is giving message "HTTP STATUS 404".

The file was being acessed properly previously but suddenly something went wrong. When i checked log file it says

GET "filename" 404 1141 "url"

I tried finding what is error code 1141 but failed to get valid explanation.

Please tell me what is this 404 1141 status code. Im using jakarta-tomcat 5.0 under red hat linux 7 and also using mod_jk to connect apache to tomcat.

Thanks in advance.
 
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The "1141" is not an error code. It is probably the number of bytes returned to the requestor.
Is this log file from Apache or Tomcat?
Apache should have a line at the top of the log file that tells you what data is in what field.
Tomcat 5.5 is configured through the "AccessLogValve" settings in server.xml (see here). I don't know about Tomcat 5.0.
 
reply
    Bookmark Topic Watch Topic
  • New Topic