apache error log

apache error log

www-error_log:[Tue Jun 17 10:03:58 2008] [info] [client 221.....]                                              (32)Broken pipe: core_output_filter: writing data to the network
www-error_log:[Tue Jun 17 10:04:35 2008] [info] [client 221.....]                                              (32)Broken pipe: core_output_filter: writing data to the network


我已经改了,EnableSendfile 如下,但是上面的问题还是存在,各位大哥有什么可以指点的么?

vi http.conf
httpd.conf:EnableSendfile off


谢谢了
一些平台可能会有编译系统检测不到的有缺陷的sendfile支持,特别是将在其他平台上使用交叉编译得到的二进制文件运行于当前对sendfile支持有缺陷的平台时。
在Linux上启用IPv6时,使用sendfile将会触发某些网卡上的TCP校验和卸载bug。
当Linux运行在Itanium处理器上的时候,sendfile可能无法处理大于2GB的文件。
对于一个通过网络挂载了NFS文件系统的DocumentRoot (比如:NFS或SMB),内核可能无法可靠的通过自己的缓冲区服务于网络文件。
如果出现以上情况,你应当禁用sendfile :

EnableSendfile Off
再加一条:EnableMMAP Off
谢谢了,我试验下。
好像是不错,等我多看几天

谢谢。