Installing MySQL is quite an easy thing to do, especially when done using pkgs, dmgs or exes. It gets just a tad more time consuming and brain intensive when installing a .tar.gz binary package. It is when you’re compiling MySQL source directly that you’ll need some planning and playing, but the latter is only done in particular cases such as when you’ll need a particular engine not shipped with a pre-compiled package etc.
Today we’re going through the steps required for a typical MySQL installation from a .tar.gz package on a *nix based platform, including the download, installation, configuration and securing.
Steps involved:
1. Download MySQL binary tarball from mysql.com
2. Create a folder structure where the installation will be
held.
3. Install the package
4. Secure the installation
Step 1: Download MySQL
Go to http://dev.mysql.com/downloads/ and choose the particular …
[Read more]