APF, BFD and DDOS installation steps

======================================================= APF ======================================================= APF stands for Advanced policy firewall, is a software for unix based systems. Let me explain the steps to be followed in installing APF in your Linux system. #cd /usr/local/src/ [user@linux]#wget http://www.rfxn.com/downloads/apf-current.tar.gz [user@linux]#tar -xvzf apf-current.tar.gz [user@linux]#./install.sh [user@linux]#vi...

MySQL command help

Command to create mysql user ============================ CREATE USER 'username'@'localhost' IDENTIFIED by 'password'; Command to grant all privileges to a user to databases starting with any name ============================================================================= GRANT ALL PRIVILEGES ON database_.* TO 'username'@'localhost' IDENTIFIED BY 'password'; flush privileges; The...

Plesk control panel server paths

Plesk admin password can be found in the followin file /etc/psa/.psa.shadow Web user files are located at the following path /var/www/vhosts Maillogs path for plesk control panel /usr/local/psa/var/log/maillog Plesk binary file paths. /usr/local/psa/bin Domain’s Logrotate path /usr/local/psa/etc/logrotate.d/domainname Qmail paths in...

Installing eAccelerator in linux machine

Follow the steps to install eAccelerator in linux machine #cd /usr/local/ #wget http://bart.eaccelerator.net/source/0.9.6/eaccelerator-0.9.6-rc1.tar.bz2 #tar -jxvf eaccelerator-0.9.6-rc1.tar.bz2 #cd /usr/local/eaccelerator-0.9.6-rc1/ #phpize #./configure #make #make install Open a file as eaccelarator.ini in /etc/php.d/ directory #vi /etc/php.d/eaccelarator.ini Then add the configuration like : zend_extension=”path/where/eaccelerator.so/is/locate/eaccelerator.so”...