1. Login to your dedicated server as root user.
2. Use the following command:
# /usr/local/apache/bin/httpd -v
Server version: Apache/2.2.16 (Unix)
Server built: Feb 6 2012 11:41:41
InetServices offers both Windows and Linux bare metal server hosting, and cloud server hosting for any small to medium size business. We also offer both PCI and HIPAA Compliant servers allowing you to achieve PCI or HIPAA Compliance without all the worries of figuring it out. InetServices offers much more than just dedicated servers and cloud servers, we offer you a complete solution to your hosting needs including Big Data, Disaster Recovery, and High Availability services.
1. Login to your dedicated server as root user.
2. Use the following command:
# /usr/local/apache/bin/httpd -v
Server version: Apache/2.2.16 (Unix)
Server built: Feb 6 2012 11:41:41
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.
Netstat is a tool in the Linux which can be used to monitor network services. It dictates you about the processes that are using a port. Netstat displays all the ports in use and used by all of the processes, however, you can limit those to only a specific port simply by using the “grep” command.