Step 1: Check list the mysql rpm which is installed on server
rpm -qa | grep mysql
or
yum list installed | grep mysql
Step 2 : Removing all mysql-related packages (with “yum command”)
yum remove mysql-client mysql-server mysql-common mysql-devel
Step 3: Delete the databases folder
rm -rf /var/lib/mysql/
rm -rf /etc/my.cnf
Congratulation’s!...
Monday, June 6, 2016
Sunday, May 29, 2016
Finding and preventing ddos attack on Linux Server

A distributed denial-of-service (DDoS) attack occurs when multiple systems flood the bandwidth or resources of a targeted system, usually one or more web servers. Such an attack is often the result of multiple compromised systems flooding...
Friday, May 27, 2016
Tracing the execution of processes using strace
Anil Joshi
12:47 AM
Linux, Mysql, sql tricks, Strace
No comments
Strace
is quite simply a tool that traces the execution of system calls. It can trace the execution of a binary from start to end, and
output a line of text with the name of the system call, the arguments and the
return value for every system call over the lifetime of the process.
1.Find
out which config files a program reads on startup
strace
php...
Thursday, May 26, 2016
Simple bash script's for managing mysql
Anil Joshi
10:09 PM
Backups, Database Maintainance, Replication, Scripts
No comments

1. Monitoring replication health
#!/bin/bash
sql_thread_running=$(mysql -e "show slave status\G" | awk -F":" '/Slave_SQL_Running/ { print $2 }' | tr -d ' ')
io_thread_running=$(mysql -e "show slave status\G" | awk -F":" '/Slave_IO_Running/...
Running multiple mysql instance on single server(Centos&Red Hat)
Anil Joshi
12:17 AM
Database Maintainance, Installation
No comments
Follow Below Steps:-
Step (1): Create a new MySQL data directory.
mkdir -p /var/lib/mysql2
Step 2: Give permission and ownership .Now we are taking ownership and permission reference from original /var/lib/mysql data directory
chmod --reference /var/lib/mysql /var/lib/mysql2
chown --reference /var/lib/mysql /var/lib/mysql2
Step...