High Memory Usage on a Dedicated or Cloud Server

The common philosophy with respect to system memory is that unused memory is wasted. Most operating systems, including both Windows and Linux maintain what’s called a memory “cache.” Technically this memory space is in use, however it is designed to be freed immediately if applications actually need the memory.

Read More

Checking Your Dedicated Server for a DDOS Attack

You can use the following commands on a Linux server to determine if your dedicated server is being DDOS attacked.

# netstat -anp |grep ‘tcp\|udp’ | awk ‘{print $5}’ | cut -d: -f1 | sort | uniq -c | sort –n

This command will show you the list of IP’s which have logged in is maximum number of connections to your server.

Read More