Kloxo Installation Guide
Prerequisites
1) A dedicated or virtual server running CentOS or Red Hat EL 5.x. CentOS 6.x is not currently supported.2) At least 256 MB of RAM (enough to run Yum).3) At least 2 GB of free disk space for Kloxo and related services.4) If you partitioned your disks manually, make sure you have a large /tmp. Kloxo uses /tmp to create and store backups temporarily and the process will fail if there is not enough space.
Before we begin...
You have to disable SELinux by...
Thursday, November 29, 2012
How to Restore a Full Cpmove File Using Whm.
Restoring a full cpmove file or cpanel complete backup file is very easy using the whm interface. The only condition is that the cpmove file or the cpanel backup file should be in any of the below directory:/home/usr/home/web/home2/home3/root/usrSo if you have the backup file at any other location then please move it to any of the above location otherwise you will not be able to restore the cpanel account using WHM.Open the whm >>...
How to Create a Backup using SSH Shell Commands.
How to make a backup using command prompt ? How to pack a user account using SSH putty ?These similar questions are very common among newbies and new webmasters.Here below is the code that you can use to pack a CPanel account.1). Open SSH Command prompt window and login as root with your root password.2). Run the below code and press enter.
Code:
/scripts/pkgacct username
Where username will be the username of the account you want to generate a backup for.3). Your backup file will be available in /home/ directory...
Saturday, September 15, 2012
How to copy files using SSH
you can't copy using the 'ssh' program specifically, but you can with it's associated programs: sftp or scpsftp is (and works) similar to ftpscp is a neat little program:copy from a remote machine to my machine:scp user@192.168.1.100:/home/remote_user/Desktop/file.txt /home/me/Desktop/file.txtcopy from my machine to a remote machine:scp /home/me/Desktop/file.txt user@192.168.1.100:/home/remote_user/Desktop/file.txtcopy all file*.txt from a remote machine to my machine (file01.txt, file02.txt, etc.; note the quotation marks:scp...
Thursday, May 10, 2012
Protect DDOS attack with medialayer (D)DoS Deflate
About
(D)DoS Deflate is a lightweight bash shell script designed to assist in the process of blocking a denial of service attack. It utilizes the command below to create a list of IP addresses connected to the server, along with their total number of connections. It is one of the simplest and easiest to install solutions at the software level.
netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n
IP addresses with over a pre-configured number of connections are automatically blocked in the server's...
Saturday, April 14, 2012
In
CentOS | Fedora,
centos 5,
install,
litespeed,
PHP,
php compile
by Unknown
//
10:48 AM
//
Leave a Comment
LiteSpeed Standard Edition, PHP, and MySQL on CentOS 5
Install dependensi PHP, modul, and tools
Source code
#yum -y install gcc gcc-c++ glibc make automake GeoIP GeoIP-devel GeoIP-data fontconfig fontconfig-devel gd gd-devel pam pam-devel openldap openldap-devel libXpm libXpm-devel libtool libaio libaio-devel libtool-ltdl libtool-ltdl-devel libmcrypt libmcrypt-devel mhash mhash-devel unixODBC unixODBC-devel zip unzip nano perl openssl openssl-devel pcre pcre-devel bzip2...