Log into Plesk control panel on your dedicated server:
1. Click Websites & Domains
2. Click on Databases
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.
Log into Plesk control panel on your dedicated server:
1. Click Websites & Domains
2. Click on Databases
Run the following command to dump a database:
# mysqldump database_name > Database_name.sql
For example, you want to dump a database called “mydb”.
# mysqldump mydb > mydb.sql
1. # /etc/init.d/mysqld stop
2. Start MySQL server without password:
# mysqld_safe –skip-grant-tables &
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.
OpenSSH (or Secure SHell) has become a de facto standard for remote access replacing the telnet protocol. However, a default installation of ssh isn’t perfect, and when running an ssh server there are a few simple steps that can dramatically harden an installation.