On Thu, 2005-02-17 at 23:52 -0500, David Blank-Edelman wrote:
> Hi-
>    Thanks for such a great program and all of the work being put into 
> it. We're having a nasty problem with clamd 0.8x (even with 0.83 which 
> we just installed yesterday). After running for a while, it will decide 
> to just stop functioning and return failures or refuse connect from the 
> MTA. Here are some specifics:
> 
> Solaris 9, gcc built, Solaris 9 stock zlib (1.1.4)
> 
> Here's a sample part of our clamd.log:
> 
> Tue Feb 15 10:16:43 2005 -> SelfCheck: Database status OK.
> Tue Feb 15 10:19:53 2005 -> 
> /var/spool/exim/scan/1D14UQ-0005c9-DG/1D14UQ-0005c9-
> DG.eml: Unable to open file or directory ERROR
> Tue Feb 15 10:19:53 2005 -> Client disconnected
> Tue Feb 15 10:19:53 2005 -> ERROR: accept() failed
> Tue Feb 15 10:19:53 2005 -> ERROR: accept() failed
> Tue Feb 15 10:19:53 2005 -> ERROR: accept() failed

This really looks like you're running out of some resource. That accept
() failure is from the clamd primary socket. We will need to find out
what the error is. Please try this patch:

--- clamd/server-th.c   6 Feb 2005 19:45:58 -0000       1.54
+++ clamd/server-th.c   18 Feb 2005 09:11:49 -0000
@@ -499,7 +499,7 @@
 #ifdef HAVE_STRERROR_R
            logg("!accept() failed: %s\n", strerror_r(errno, buff,
BUFFSIZE));
 #else
-           logg("!accept() failed\n");
+           logg("!accept() failed: %s\n", strerror(errno));
 #endif
            continue;
        }


Thanks,
-trog

Attachment: signature.asc
Description: This is a digitally signed message part

_______________________________________________
http://lists.clamav.net/cgi-bin/mailman/listinfo/clamav-users

Reply via email to