MySQL Command Line Administration in Linux

Linux system admins are very familiar with command line tools. Many time admins need to administrate mysql server, they need to create database, manage database user, backup & restore mysql database, repair database & much more. In this post I will explain some usefull command to administrate mysql server. To …

Read More »

Install Plesk 12.5 on AWS EC2 Ubuntu 14.04

If you are planning to host your websites on Amazon AWS EC2 & you are little confused what control panel to choose, here is the answer. You can use Plesk Web Admin Edition. which will cost around $4/month, cheaper than cPanel which cost $15/month. And features are near about same. Not only …

Read More »

Apache MPMs Explanation

MPM or multiprocessing modules are part of the apache code that handle incoming requests. So different mpms handle requests differently. It is important to note that although these are called modules they are not like loadable modules. Rather a mpm is seated right inside the apache binary. So at a …

Read More »

How To Configure OSPF Routing In CISCO router

Introduction of OSPF: Open Shortest path first (OSPF) is a routing protocol for internet network. It is basically a dynamic routing protocol. OSPF is an Interior Gateway Protocol (IGP) for routing. OSPF supports internet version 4 and internet version 6 network and also use Variable Length Subnet Mask (VLSM) and …

Read More »

How to create Access Control List (ACL) in the Squid proxy

Access Control using squid proxy: Access control in a proxy server can mean user account access,but also website or url,ip address or DNS blocking or restriction. We can easily established the access control server in our local network. At that time server is act as a gateway. At first squid …

Read More »

Setup Ubuntu as Router

Your old P4 PC can be used as a full featured router. Install Ubuntu / Debian & follow this step to setup ubuntu as router. You can take control over every bit of data flow through the router. Ok , lets start . Setup router on ubuntu debian, To configure …

Read More »

Squid Proxy Server

ABOUT SQUID PROXY SERVER: Squid proxy server enables you to cache your web content and return it quickly on subsequent requests. A proxy server is a server that caches the internet. Clients connect to the proxy server with a request for an internet server. The proxy server will connect to the …

Read More »

Apache Reverse Proxy Nginx

Apache Reverse Proxy Nginx

We know Apache is the most popular web server, because of its flexibility. It is opensource, there is lots of module to handle different types of language like Python, Perl, Rubi, PHP. But apache have some issue with thread & process management. Apache slows down under heavy load, because of the …

Read More »

Apache Reverse Proxy & Forward Proxy

What is Apache Forward Proxy ? Forward proxies act as a gatekeeper between client browsers on your local network and internet accessed by those clients. The forward proxy will receive the HTTP requests, perform any filtering or request alteration rules you establish, and when appropriate, forward the request to destination. The response …

Read More »