MySQL InnoDB Corruption Repair Guide
MySQL InnoDB Corruption Repair Guide
This is a basic guide that goes over some of the methods you can use to deal with some of the most common InnoDB corruption issues, from start to finish.
SECTIONS
/A/ First Response
A/1 Initial Steps
A/2 If MySQL is Crashing
/B/ Identifying the Problem
B/1 Examining the Logs
B/1.1 Page Corruption
B/1.2 …Read More
How to Recover InnoDB MySQL Table Data from ibdata and .frm Files
How to Recover InnoDB MySQL Table Data from ibdata and .frm Files
This tutorial explains how to restore MySQL tables when all or some of the tables are lost, or when MySQL fails to load table data.
One of the reason for this to happen is when the table data is corrupted.
In …Read More
Installing Lighttpd with PHP (PHP-FPM mode) and MySQL or MariaDB on Ubuntu 15.04
Installing Lighttpd with PHP (PHP-FPM mode) and MySQL or MariaDB on Ubuntu 15.04
Lighttpd is a secure, fast, standards-compliant web server designed for speed-critical environments. This tutorial shows how you can install Lighttpd on an Ubuntu 15.04 server with PHP support (through PHP-FPM) and MySQL. PHP-FPM (FastCGI Process Manager) is an …Read More
Upgrading MySQL databases after a software update
Upgrading MySQL databases after a software update (and possibly repairing structure and tables if problems occurs)
Sometimes MySQL changes its internal database structures between versions. When that is the case, you might get these kind of errors after updating it (probably via yum) and trying to start it:
[ERROR] Missing system table …Read More
Convert InnoDB to innodb_file_per_table and Shrink ibdata1
Years ago, MySQL started allowing InnoDB to possess separate tablespace per table instead of a massive unified ibdata1 file. Tablespace is basically a logical storage area that contains table information – references, if you will. Every table, regardless of the storage engine, has one, and without it the table will be …Read More
MySQL Backup Databases from shell
While automated backups are important, sometimes you just want to take a quick and dirty MySQL Backup of a database or all databases before making a change to your data. When changing files in Linux, you can simply cp a file to another name, and cp it back if your change …Read More
LAMP Server (Apache / MariaDB /PHP) on Fedora 19+ and Centos/RHEL 7
LAMP is a combination of operating system and open-source software stack. The acronym LAMP comes from the first letters of Linux, Apache HTTP Server, MySQL/MariaDB database, and PHP, Perl or Python (and sometimes PhpMyAdmin too.)
Installing Apache
Change to root (if not root already) user using the following command:
1 |
su - |
and install apache using …Read More
How do you remove fragmentation from InnoDB tables?
Question:
I have a Database having number of tables.
I want to delete some records from the tables say the no of records are more than 20K or 50K.
The All the Tables are InnoDB. And file_per_table is off.
When I will delete the records from a number of tables there will be fragmentation …Read More
How to Fix MySQL Database (MyISAM / InnoDB)
So… your shiny MySQL database is no longer running and you want to fix it?
You’ve come to the right place!
I’ve assembled a list of 7 ways to fix your MySQL database when a simple restart doesn’t do the trick, or when you have corrupt tables.
Simple MySQL restart:
/usr/local/mysql/bin/mysqladmin -uUSERNAME -pPASSWORD shutdown
/usr/local/mysql/bin/mysqld_safe …Read More
Install LAMP Server (Apache, MySQL or MariaDB, PHP) On Ubuntu 14.10/14.04/13.10
LAMP is a combination of operating system and open-source software stack. The acronym LAMP comes from the first letters of Linux, Apache HTTP Server, MySQL or MariaDB database, and PHP/Perl/Python.
In this tutorial, we will see how to setup LAMP server on Ubuntu 14.10 system.
Install Apache
Apache is an open-source multi-platform web …Read More
Tuning MySQL Performance with MySQLTuner
Version 1.0
Author: Falko Timme <ft [at] falkotimme [dot] com>
Last edited 08/28/2008
MySQLTuner is a Perl script that analyzes your MySQL performance and, based on the statistics it gathers, gives recommendations which variables you should adjust in order to increase performance. That way, you can tune your my.cnf file to tease out …Read More
Migrating From MySQL To MariaDB
Why should I migrate from MySQL to MariaDB?
MariaDb is an enhanced drop-in replacement and community-developed fork of the MySQL database system. It was developed by MariaDB foundation, and is being led by original developers of MySQL. Working with MariaDB is entirely same as MySQL. After Oracle bought MySQL, it is …Read More