How to Install ClamAV

In this article we will guide you through the installation of ClamAV on CentOS. Install CalmAV: To install require ClamAV packages,Use the command below: yum install clamav clamd Start the clamd service and set it to auto-start /etc/init.d/clamd on chkconfig clamd on /etc/init.d/clamd start Configure Daily Scan: In this example, we will configure a cronjob […]

Continue Reading…

httpd: apr_sockaddr_info_get() failed for “hostname”

When I start httpd service,I get a warning : [wpfmb type=’warning’ theme=2]”Starting httpd: httpd: apr_sockaddr_info_get() failed for myservername, httpd: Could not reliably determine the server’s fully qualified domain name, using 127.0.0.1 for ServerName”[/wpfmb] This error is caused by the improper configuration of hostname of server,to fix it follow the steps below: There are three methods […]

Continue Reading…

scp with port number

SCP command is used to copy files between servers in secure way. The basic syntax of the SCP command is as follows: scp source_file_name username@destination_host:destination_folder This command will copy the file from local to the remote server location. scp user@remote_host:/source_file_name /destination_folder The above command will copy the file from remote server to local. You can use […]

Continue Reading…