How To Setup A LAMP Server On Centos 6.0

August 26, 2011

LAMP is essentially a server that runs Linux, Apache, MySQL and Php/Perl and is more commonly known as a LAMP server. This guide provides step-by-step instructions for installing a full-featured LAMP server on a CentOS 6 .0

Read more →

How To Optimize Nginx For Maximum Performance

August 25, 2011

Nginx is an open-source Web Server. It is a high-performance HTTP server that uses very low server resources, is reliable and integrates beautifully with Linux. In this article, I’ll talk about optimizing your nginx server for maximum performance.

Read more →

Linux Shutdown Command

August 24, 2011

shutdown command brings the system down in a secure way. All logged-in users are notified that the system is going down, and login is blocked. It is possible to shut the system down immediately or after a specified delay. All processes are first notified that the system is going down by the signal SIGTERM. This […]

Read more →

Auto Backup Server Files & MySQL To FTP Server

August 23, 2011

This is a simple script take to daily backup server files and MySQL databases to FTP server. Make sure you have lftp client installed. Type the following command if you are using Centos/Fedora/RedHat # yum install lftp

Read more →

How To Install Memcache PHP Extension

August 23, 2011

Memcache extension provides handy procedural and object oriented interface to memcached, highly effective caching daemon, which was especially designed to decrease database load in dynamic web applications. This article will explain how to install the memcache PHP extension on Centos/RedHat/Fedora.

Read more →

Rsync With A Non-Standard SSH Port

August 23, 2011

How do I tell rsync to use a different port for SSH ? # rsync -av -e “ssh -p [port_number]” user@ip:/path/to/source/ /path/to/destination/

Read more →