IPtables Firewall Rules
*filter -P INPUT DROP -P FORWARD DROP -P OUTPUT DROP # Allows all loopback (lo0) traffic and drop all traffic to 127/8 that doesn’t use lo0 -A INPUT -i lo … Continue Reading →
A Pandit of Server Technologies
*filter -P INPUT DROP -P FORWARD DROP -P OUTPUT DROP # Allows all loopback (lo0) traffic and drop all traffic to 127/8 that doesn’t use lo0 -A INPUT -i lo … Continue Reading →
Introduction One of the more recently popular modules for Apache is mod_pagespeed. It is an output filter for Apache 2.2+ that can be configured through a variety of options through … Continue Reading →
To Check the DB size in MB, login to mysql and execute the below query in mysql mysql> SELECT table_schema “DB Name”,Round(Sum(data_length + index_length) / 1024 / 1024 , 1) “DB … Continue Reading →
Wget, the “non-interactive network retriever,” is called at the command line. The format of a Wget command is: wget [option]… [URL]… The URL is the address of the file(s) you … Continue Reading →
In Linux, Cron is a daemon/service that executes shell commands periodically on a given schedule. Cron is driven by a crontab, a configuration file that holds details of what commands … Continue Reading →