• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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