Was wondering if anyone had any more suggestions.

At this point I would even accept a script that would run from crontab
to check if clamd is running.  If not start it up again.

I tried the script below and works well from a command line but not from
crontab.  It starts multiple clamd daemons.

****************

#!/bin/sh
exec 1>>/var/log/messages
exec 2>&1
TIMESTAMP=`date +"%b %e %H:%M:%S"`
# check for clamd daemon
if skill -n clamd
then
        echo $TIMESTAMP " clamd is running"
else
        echo $TIMESTAMP " restarting clamd daemon"
        rm /var/amavisd/clamd.sock
        chroot -u amavisd /var/amavisd /usr/sbin/clamd
fi

*******************

I have used Scott Vintinner's setup at www.lawmonkey.org/anti-spam.html.
Then added clamav using the Openbsd3.3 port from
http://activeintra.net/projects/clamav/.

I changed the Makefile to set username from _clamd for clamd and
freshclam to amavisd because everything is running chroot as user
amavisd.

Plus made the following changed to chroot directory per Helmut
Schneider's suggestions in the amavis user list.

cd <your chrooted directory>
mkdir usr/local/share/clamav
cp /usr/lib/libpthread.so.1.0 usr/lib
cp /usr/lib/libz.so.2.0 usr/lib
cp /usr/local/lib/libclamav.* usr/lib/
cp -R /usr/local/share/clamav usr/local/share
cp /usr/local/bin/freshclam usr/bin
cp /usr/local/sbin/clamd usr/sbin
cp /root/clamav.conf etc
mknodd dev/urandom c 2 2
chown -R amavisd:amavisd <your chrooted
directory>/usr/local/share/clamav chmod -R 750 <your chrooted
directory>/usr/local/share/clamav

Start freshclam:
chroot -u amavisd <your chrooted directory> /usr/bin/freshclam -d -c 4
--log-verbose --datadir=/usr/local/share/clamav -l
/var/log/clam-update.log

Start clamd:
chroot -u amavisd <your chrooted directory> /usr/sbin/clamd

I later made the following changes and additions

mknod dev/urandom c 45 2
mknod dev/randmon c 3 2

Then after still having trouble made sure ScanMail and ScanArchives were
commented out in the clamav.conf.

If anyone has any suggestions I would love the help.   I have two
installs doing the exact same thing.  So if I made a mistake in my setup
I made it more than once.

Thanks

LA Duerksen



-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01
_______________________________________________
Clamav-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/clamav-users

Reply via email to