How to backup SQL Server databases to a mapped drive using Username and Password

First of all we need to enable xp_cmdshell option on our SQL server. This option enables system administrators to control whether the xp_cmdshell extended stored procedure can be executed on a system. By default, the xp_cmdshell option is disabled on Continue reading How to backup SQL Server databases to a mapped drive using Username and Password

Postfix Email antivirus scanning with ClamAV on Linux

Download the antivirus components: yum install clamav-daemon clamav-freshclam clamsmtp Add the following to the end of your “/etc/postfix/main.cf” file: content_filter = scan:[127.0.0.1]:10025 Make your “/etc/clamsmtpd.conf” file look like this: OutAddress: localhost:10026 ClamAddress: /var/run/clamav/clamd.ctl User: clamav Make your “/etc/clamav/clamd.conf” file look Continue reading Postfix Email antivirus scanning with ClamAV on Linux