web-dev-qa-db-fra.com

ClamAV: le fichier clamd.ctl n'est pas créé sur ubuntu

J'ai la version ubuntu 16.04.6 et j'essaie d'installer et d'exécuter le clamdscan dessus pour vérifier les antivirus.

J'ai utilisé le instructions d'installation comme indiqué sur leur site Web . c'est à dire.

Sudo apt-get install clamav
Sudo apt-get install clamav-daemon

Les 2 commandes ci-dessus fonctionnent bien. Mais lorsque j'essaie de télécharger les définitions (que je suppose obligatoires après ce qui précède) en exécutant la commande

Sudo freshclam

il échoue en lançant l'erreur suivante:

^Clamd was NOT notified: Can't connect to clamd through /var/run/clamav/clamd.ctl: No such file or directory

Selon cette réponse acceptée , le fichier devrait être créé après l'installation de clamav-daemon mais évidemment cela ne se produit pas.

Toute aide est grandement appréciée.

4
Nikhil Nanjappa

Ajoutez un fichier de chaussettes pour ClamAV:

Sudo touch /var/lib/clamav/clamd.sock
Sudo chown clamav:clamav /var/lib/clamav/clamd.sock

Ensuite, modifiez /etc/clamav/clamd.conf - commentez cette ligne:

LocalSocket /var/lib/clamav/clamd.sock

Enregistrez le fichier et redémarrez clamav-daemon.service

Une autre erreur:

Sudo freshclam

Downloading daily-25578.cdiff [100%]
Downloading daily-25579.cdiff [100%]
Downloading daily-25580.cdiff [100%]
Downloading daily-25581.cdiff [100%]
Downloading daily-25582.cdiff [100%]
Downloading daily-25583.cdiff [100%]
daily.cld updated (version: 25583, sigs: 1778105, f-level: 63, builder: raynman)
Downloading bytecode-331.cdiff [100%]
bytecode.cld updated (version: 331, sigs: 94, f-level: 63, builder: anvilleg)
Database updated (6344448 signatures) from database.clamav.net (IP: 104.16.219.84)
WARNING: Clamd was NOT notified: Can't connect to clamd through /run/clamav/clamd.ctl: No such file or directory

clam

Ajoutez un fichier de chaussettes pour ClamAV:

Sudo touch /run/clamav/clamd.sock
Sudo chown clamav:clamav /run/clamav/clamd.sock

Sudo systemctl restart clamav-daemon.service
Sudo freshclam

ClamAV update process started at Thu Sep 26 11:47:12 2019
main.cvd is up to date (version: 58, sigs: 4566249, f-level: 60, builder: sigmgr)
daily.cld is up to date (version: 25583, sigs: 1778105, f-level: 63, builder: raynman)
bytecode.cld is up to date (version: 331, sigs: 94, f-level: 63, builder: anvilleg)

C'est ça.

1
JoKeR

J'ai constaté qu'après avoir exécuté le:

freshclam 

Et obtenez cette erreur:

Clamd was NOT notified: Can't connect to clamd through /var/run/clamav/clamd.ctl: No such file or directory

Il vous suffit d'exécuter le redémarrage du démon:

service clamav-daemon restart

Et puis freshclam encore et tout fonctionne.

0
gsr