blob: 1dfab32e5678f2d9f2a2a2ed48b571038755ed87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
=encoding utf-8
=head1 Name
accept_failed
=head1
B<Q:>
What does the following error mean in the log file: "accept() failed (53:
Software caused connection abort) while accepting new
connection on 0.0.0.0:80"?
E<nbsp>
B<A:>
Such errors stem from the connections that the clients managed
to close before nginx was able to process them. For instance, this can
happen in a situation when the user didn’t wait for a page
heavily populated with images to load fully, and clicked on a
different link. In this case user’s browser would close all of
the prior connections which aren’t longer necessary.
It is a non-critical error.
|