Upgrade MySQL
To list Old MySql yum list installed | grep -i mysql To remove Old MySql yum remove mysql mysql-* Remi Dependency on CentOS 6 and Red Hat (RHEL) 6 rpm … Continue Reading →
A Pandit of Server Technologies
To list Old MySql yum list installed | grep -i mysql To remove Old MySql yum remove mysql mysql-* Remi Dependency on CentOS 6 and Red Hat (RHEL) 6 rpm … Continue Reading →
How to Set Up Replication This section briefly describes how to set up complete replication of a MySQL server. It assumes that you want to replicate all databases on the … Continue Reading →
I started to write this post many weeks ago and finally publish it even if it’s not totally finish. It is just a little feedback about tuning a full LAMP … 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 →