Archive for January, 2012

How to install mod_evasive(DDOS protection tool) on 64 bit linux machine?

You should follow below steps : ======== cd /usr/local/src wget http://www.sfr-fresh.com/unix/privat/mod_evasive_1.10.1.tar.gz tar -zxvf mod_evasive_1.10.1.tar.gz cd mod_evasive For apache 2.0.x : /usr/sbin/apxs -cia mod_evasive20.c //integrating with apache. Then add these in httpd.conf : DOSHashTableSize 3097 DOSPageCount 6 DOSSiteCount 100 DOSPageInterval 2 DOSSiteInterval 2 DOSBlockingPeriod 600   For apache 1.3.x : /usr/local/apache/bin/apxs -cia mod_evasive.c //integrating with apache. […]

How to install suPHP on linux server?

You should follow below steps : ======================================= suPHP is a tool that allows PHP scripts to be executed with the permissions of their owners. By not running PHP script using web server’s user rights, suPHP increase the server security. First install httpd-devel and compiler tools: yum install httpd-devel gcc gcc-c++ make Download suPHP source code […]

How to install RMS(Ray Media Server) server on 64 bit linux machine?

You should follow below steps : ==================== cd /usr/local mkdir RMS cd RMS wget http://get.boonex.com/RMS-LINUX-v.7.0 tar xzvf RMS-LINUX-v.7.0 Steps for configuring RMS : 1. access.dat – input all domain names which will be allowed to access RMS. Every domain name should be written on a separate line and should not contain “http://” and “www”, just […]

Install xen virtual server on linux platform

Install xen virtual server on linux platform Before installing xen on the linux (centos or Redhat), please check the compatiblity. Then check whether the server has already installed xen. There packages should be checked. I checked using RPM. .1 xenserver# rpm -qa |grep xen  xen-libs-3.1.0-13.el5  xen-3.1.0-13.el5  xenserver #rpm -qa |grep kernel-xen  kernel-xen-2.6.21-2950.el5 xenserver-dev #rpm –qa […]