Configuration

How to install and configure FTP Server

There are lots of ftp servers available for linux, proftpd is one of the popular server available for Debian, so in this tutorial we will deal with installing and configring proftpd server on Debian
To install proftpd server

apt-get install proftpd

While installing there is a option to choose the type of installation, whether it is standalone [...]

MySql Database Replication

When we search for `Database Replication` we will find lots of tutorials, so here I wont add new one, I am just highlighting one of the best tutorials to refer.
http://www.howtoforge.com/mysql_database_replication
This article contains simple copy & paste steps to configure MySql replication, if you need more detailed indepth explanation on different configuration settings then go to [...]

Page level caching using nginx

Many of our dynamic sites contain rarely updated content (ex. blog archive page). By adding nginx server as proxy server infront of your apache server you can server those pages like static pages instead of running the page for every request, this will boost your site speed from 50% – 400%.
We need apache, nginx to [...]

Changing host name of Linux server

To change the host name of current session use
/bin/hostname your-host-name
To change the host name permanently use
/etc/hostname
/etc/init.d/hostname.sh start
Share/Bookmark

Intel poulsbo Drivers for Ubuntu

Many people after installing Ubuntu for the first time or after Kernel update facing the problems with display drivers of Intel Poulsbo chipset. Here is steps to repair your display
For new installation:
Update aptitude sources
Share/Bookmark

Debian / Ubuntu Apache SSL Configuration

Hey you are planning to start a e-commerce website, then you must know about SSL without which no one will trust your website as a safe place to use their cards…
What is SSL?
SSL (Secure Socket Layer) is a protocol used for secure data transfer. This is done by using private keys and certificates. A private [...]