jacobweber / shrink-ibdata1

Bash shell script to shrink /var/lib/mysql/ibdata1 and restore disk space

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Shrink the MySQL ibdata1 file

Bash shell script to shrink the MySQL metadata file and restore disk space. This script should work with all MySQL variants such as Percona and MariaDB.

Overview:

Over time, MySQL databases are added and tables are populated which can cause the /var/lib/mysql/ibdata1 metadata file to grow. This script makes it easy to shrink this file and recover valuable disk space. The script is based loosely on the steps outlined here: http://dba.stackexchange.com/questions/8982/what-is-the-best-way-to-reduce-the-size-of-ibdata-in-mysql.

Installation:

$ git clone https://github.com/uberhacker/shrink-ibdata1.git
$ sudo mv shrink-ibdata1/shrink /usr/local/bin

Usage:

$ shrink [-k]

Use the -k switch to keep backups instead of restoring the databases

Examples:

To shrink the MySQL metadata file and restore the databases:

$ shrink

To shrink the MySQL metadata file and keep the backups instead of restoring the databases:

$ shrink -k

You might want to do this if you wish to clear out MySQL of any existing databases.

About

Bash shell script to shrink /var/lib/mysql/ibdata1 and restore disk space

License:GNU General Public License v3.0


Languages

Language:Shell 100.0%