• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Dr.Web for Plesk 12.x Commands Linux Centos 7 64bits

juanam

New Pleskian
I don´t know that product & version have installed.
Dr Web is included with the purchase of Parallels Plesk.

a) What are the console commands for Linux Centos 7, 64 bits ?
b) Has it graphical environment for Linux Centos 7, 64 bits ?
  • OS: ‪CentOS Linux 7.2.1511 (Core)‬
  • Plesk version: 12.5.30 Update #30
Do I have to have some specific library installed to work ?
 
Hi juanam,

pls. read the official Plesk documentation:


b) Has it graphical environment for Linux Centos 7, 64 bits ?
No. ( I wonder what sort of "graphical environment" you expect... )

Do I have to have some specific library installed to work ?
Installing Dr.Web over the Plesk Control Panel, or over the command line ( with the Plesk autoinstaller for example ), is sufficient to meet the requirements.
 
Hi juanam,

pls. read the official Plesk documentation:



No. ( I wonder what sort of "graphical environment" you expect... )


Installing Dr.Web over the Plesk Control Panel, or over the command line ( with the Plesk autoinstaller for example ), is sufficient to meet the requirements.
Aah Ok , so it does not replace an server antivirus (VPS ) as the Clamav.
Can I not scan files and directories on my VPS manually?
 
As far as I remember, Dr.Web only scans mail. If you have ClamAV already installed, I would use it to scan mail.
There is a feature request at uservoice for Plesk to add ClamAV...

https://plesk.uservoice.com/forums/...lamav-as-module-in-plesk-to-protect-better-th

I hope that helps

Regards

Lloyd

Thanks Lloyd,
I have been answered the Dr. Web support forum.
It appears so you can scan directories and files.
Only a file (replace the word "file" by file name):
Code:
drwebdc file
A full directory (replace the word "directory" by directory name):
Code:
for file in $(find directory -type f);do drwebdc $file;done
Example, scanning a root directory
Code:
for file in $(find / -type f);do drwebdc $file;done
A full directory skip empty files:
Code:
for file in $(find /-type f ! -empty);do drwebdc $file;done > report
To avoid errors "Permission denied" or "Error -3, on file passed to lib", skip to scan /sys or /proc
Code:
$(find /-type f ! -empty | grep -v '/sys' | grep -v '/proc' );do echo $file; drwebdc $file;done > report
 
Last edited:
Back
Top