0%

25 Essential MySQL Resources

MySQL Logo

Anyone who’s spent more than 5 minutes on the MySQL documentation will realise it leaves a lot to be desired. The same goes for many of the 3rd party apps latched onto this platform which offer mediocre functionality and anything beyind the basic comes at a huge premium.

Well here’s a set of 20 resources, tools, articles that hope to break that and bring it all under one roof. Enjoy.

# Design & Administration Tools

  • Adminier - A really simple PHPMyAdmin alternative. I find it useful as a basic database administration panel during development of new web-based projects.
  • MyDB Studio - Makes a useful administration app for MySQL and also has some design capabilities such as the SELECT wizard to help with overly complicated queries.
  • HeidiSql - Provides an excellent GUI for administrating you MySQL database and can be used in Linux via WINE.
  • AutoMySQLBackup - Why go to the special effort of producing scripts to backup when you can use this.
  • PHPMyAdmin - Been around for years and still going strong. Its not the most speedy when handling large sets of data (try offline apps such as SQLYog or MyDB) but its got every functionality you can shake a stick at.
  • DBeaver - Similar to HeidiSQL but with better features and works on multiple platforms including Linux.

# Security Tools

SQLIer - A SQL injection tool which you provide a URL to and it does all it can to perform SQL injection. You'll often find this installed by default on security distros like Kali or ParrotOS Security.
SQLMap - A blind SQL injection tool thats a veteran with a plethora of features that makes SQLIer look like a Hello World app in comparison. It provides support for PostgreSQL, MSSQL as well as MySQL. Absolutely essential for people performing pen testing against a server. Will often be installed by default on Kali Linux, Black Arch, ParrotOD, etc.
Absinthe - An application which is available on Linux and Windows. It provides blind MySQL injection brute forcing but with more features than SQLIer.
SQID - SQL Injection Digger was created in Ruby as a command-line tool for brute force SQL injection testing. Can scrape Googl for potential targets as well as using Tor as a means to hide the identity of the attacker. More of a black hat tool than some of the others here.

# Optimising MySQL

MySQL Performace Blog - By the masters of high performance MySQL at Percona.
MySQL Percona Toolkit - a ton of tools to help with tweaking your MySQL database for the best performance.
101 Tips on MySQL Perormance - a 2019 blog post with a lot packed into a small space.
Exclusive MySQL Performance Tuning Tips - They just keep on trucking with those optimisation tips.

# Knowledge

SQLZoo - The basics of SQL.
10 Essential MySQL Performance Tips - some basic tips on keeping your MySQL database performing at max.
MySQL Cheat Sheet - Provided by devhints.io.
10 Common Mistakes of MySQL Design - Learn what not to do!
MySQL Clustering How-To - Digital Ocean is a great resource for documentation and tutorials. They've also startedd making some pretty good in-roads into providing simple cloud hosting.
MySQL Master-to-Master Replication - Another great Digital Ocean tutorial but this time covering master-master replication.
MySQL vs. PostgreSQL - One of many comparisons of the 2 major RDBMS databases.

# Books

I guess these could go under knowledge but these you have to buy so they get their own section.

If you think I’ve missed anything off then leave a note in the comments and I’ll make the list grow.