I have installed clamav
and I want to to update the files that it uses to identify viruses:
$ sudo freshclam
ERROR: /var/log/clamav/freshclam.log is locked by another process
ERROR: Problem with internal logger (UpdateLogFile = /var/log/clamav/freshclam.log).
What should I do with this error?
EDIT:
$ sudo lsof /var/log/clamav/freshclam.log
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
freshclam 866 clamav 3wW REG 259,1 100134 10486045 /var/log/clamav/freshclam.log
Short answer:
You don't have to run it manually because it has been run automatically and is running in the background, that's why you receive that message.
If you want to stop the daemon and run it manually:
run it manually:
What is happening and how to handle it?
Every time when you encounter into a similar situations, errors like
file x has been locked
orAnother process is using this file : /path/to/x
you can use thelsof
command to find out which process is using that file, in your case if you run:You should get an output like:
The
abc
is the name of process which is using that file, in your case it's:freshclam
.That means
freshclam
which you want to run has been already ran by clamav daemons.you can use
less /var/log/clamav/freshclam.log
or similar commands to see what's going on.So you don't have to run it manually anymore, it's a process to avoid any conflict and having multiple instance of a same process doing same thing at the same time.
If you want to make it stop and run it manually, then send a
SIGTERM
to its process, that gives the process a chance to finish its job and close itself cleanly, something like:sudo
may be necessary.Then run it manually:
However in this case you can use:
to stop the daemon.
This might be another option for this...
Hope this helps...
Maybe this is the most simple answer to the question:
sudo su clamav freshclam
Obviously,
freshclam
is already running with theclamav
user (assudo lsof /var/log/clamav/freshclam.log
tells us). Call it again in this user's name to wake it up and update the database. Then to check the success...sudo less /var/log/clamav/freshclam.log