Optimisation
====================================================================================
MySQL Optimisation
====================================================================================
MySQL Tuner Script:
------------------------------------------------------------------------------------------------------------------------------------------------ Implementing Variable Changes: /etc/my.cnf ------------------------------------------------------------------------------------------------------------------------------------------------ MyISAM v InnoDB Check table engine: SELECT TABLE_SCHEMA, TABLE_NAME, ENGINE Table engine into text file mysql –e "SELECT TABLE_SCHEMA, TABLE_NAME, ENGINE ------------------------------------------------------------------------------------------------------------------------------------------------
-O mysqltuner.pl mysqltuner.pl && perl mysqltuner.pl
wget
FROM information_schema.TABLES
WHERE ENGINE = 'MyISAM';
FROM information_schema.TABLES
WHERE ENGINE = 'MyISAM';" > mysql_tableengine.txt