Page 1 of 1

ClamAV after upgrade to Scalix 10

Posted: Wed Feb 15, 2006 4:42 pm
by vojinle
I get:

/etc/cron.daily/freshclam:

ERROR: Clamd was NOT notified: Can't connect to clamd on 127.0.0.1:3310
connect(): Connection refused

After I upgrade scalix to 10

Any ideas?

Posted: Wed Feb 15, 2006 5:26 pm
by ScalixSupport
This means that clamd isn't running and listening on port 3310.

Run the command

Code: Select all

lsof -i :3310
. This should return clamd as a listener on that port.

If not, run the command:

Code: Select all

/etc/init.d/clamd restart
to start it back up again.

There is nothing in the scalix install that would affect this so it's likely that the daemon was already stopped.

It's also possible that /etc/clamd.conf isn't configured to listen on the port. Check for the line

Code: Select all

TCPSocket 3310
and make sure that it is uncommented before restarting the clamd daemon.

Cheers

Dave