If you are ready to get started you can skip down to the Start the Installation section. If you scroll to the very bottom of this blog, I have a summary of the specific commands for the setup.
A Default Install using RPM or YUM
- This install assumes you have a basic understanding of Linux and MySQL database administration. Oracle DBAs will find this installation very similar to the concepts of the Optimal Flexible Architecture (OFA).
- For experienced MySQL DBAs a manual install is much better. For this purpose I created a best practices configuration and white paper called MOCA (MySQL Optimal Configuration Architecture). I wanted to call it GOCA (George's Optimal Flexible Architecture) but MOCA seemed to flow better. MOCA is based on DBA best practices and should be very similar to Oracle, DB2 and SQL Server production DBAs. There are certain fundamental truths about how database servers should be installed, configured and managed. My MOCA whitepaper addresses these fundamental truths. This manual install will follow MOCA standards and conventions.
Installation Summary
- Separating database software from other software and files.
- Separating data and index files, log files for recovery, administration and backup files.
- Developing standard naming conventions.
- Defines a flexible configuration that can support multiple database servers on same platform.
- A consistent configuration for multiple servers and versions of MySQL database software across an enterprise.
- Remove old versions of MySQL if they exist. Setup an operating system (OS) user called "mysql" and the environment for this OS user.
- Set up directories and directory permissions for all MySQL data files.
- Setup MySQL software and install MySQL software as mysql operating system user (not as root). Configure the my.cnf configuration file.
- Create the mysql database (mysql_install_db) and . Start the mysql database server (mysqld_safe).
- Setup the security environment (mysql_secure_installation)
- Test the shutdown and startup of the database server to test the server setup.
Start the Installation
- Enterprise Linux downloaded from Oracle's OTN website. Red Hat, Fedora and CentOS can be used as well. I chose Enterprise Linux because I like it and it is great for running Oracle and MySQL on same system so I can do ETL and play with the two database servers. I installed the MySQL tar package (ball) x86/x64 image mysql-5.1.42-linux-x86_64-glibc23.tar.gz. Downloaded from the http:/dev.mysql.com site.
- Before installing MySQL on any platform, make sure there are no previous versions of MySQL preinstalled that were loaded with the OS. Unless you want the older version of MySQL, your life will be much easier if you remove any previous releases that are not being used.
- Read through this installation a few times before starting.
- Note: I use the # prompt to signify I am performing steps as root and the $ prompt to show I am performing steps as the mysql OS user.
This install uses MySQL 5.1.42, although these installation procedures can be used for any 5.1.x installation. Dependent on the version of Linux and your hardware, different packages may need to be installed or removed (old MySQL installations).
So you can see my Linux environment I ran the following command at the shell.
# more /etc/redhat-release
Red Hat Enteprise Linux Server release 5.4 (Tikanga)
Check to see if MySQL is installed on your current system.
# grep mysql /etc/passwd
# rpm -q mysql
# find /usr/local -name '*mysql*' - print
# find /usr/bin -name '*mysql*' - print
# find / -name "*mysql*' - print # look everywhere for MySQL installations
Remove any MySQL old files or packages. Then verify old MySQL files are gone. If you leave the old MySQL software that is okay, but make sure MySQL is finding your MySQL files and not the old software (prime example, using the /etc/my.cnf file instead of yours).
# rpm -e mysql
Downloading MySQL
Go to http://dev.mysql.com and find the Downloads tab. Find the distributions and choose the install release you want. I prefer a manual install so I choose the Linux Tar Packages file mysql-5.1.42-linux-x86_64-glibc23.tar.gz. Select a mirror. On the Select a Mirror page, I choose No thanks, just take me to the downloads!
Note: Be aware that this MySQL image worked for me with the OS and hardware I was using. Make sure you have the right image for your environment. If commands fail because you can't run the mysql executables, you probably have the wrong image for your environment.
For a separate Centos 5.2 install on different hardware I used this image:
mysql-5.1.42-linux-i686-icc-glibc23.tar.gz
For my Linux environment the file downloaded to the /root/Desktop directory.
Setup the MySQL software
The first set of commands are run as the root OS user (# prompt) to set up the environment. In the /opt/mysql directory unzip and untar the MySQL software and build a symbolic link. This will set up the MYSQL_HOME directory to be in /opt/mysql/5.1.42 location.
# mkdir -p /opt/mysql
Copy tar file to /opt/mysql directory and setup up MySQL software.
# cp /root/Desktop/mysql-5.1.42-linux-x86_64-glibc23.tar.gz /opt/mysql
# cd /opt/mysql
# tar zxvf mysql-5.1.42-linux-x86_64-glibc23.tar.gz
# ln -s mysql-5.1.42-linux-x86_64-glibc23 5.1.42
Setup the MySQL directory locations. Here we are going to put all files below the /db01/mysql01 mount point. The naming pattern mysql01 signifies database storage for a specific MySQL database server in this layout. I like to put my InnoDB data and log files in their own location.
# mkdir -p /db01/mysql01
# cd /db01/mysql01
# mkdir data binlogs admin backups innodata innologs
Setup new mysql user if one does not exist. If a mysql user does exist, set up a password, default shell, default directory, etc.
No mysql user was found so I added one. Add the mysql group, mysql user, password and home directory.
# groupadd -g 300 mysql
# useradd -u 300 -g 300 -d /home/mysql -s /bin/bash -c "MySQL DBA" mysql
# passwd mysql
# chown -R mysql:mysql /opt/mysql /db01/mysql01
Login and verify the mysql user setup. From this point, once you login as mysql user, complete the database server as the mysql user and not as the root OS user.
# su - mysql (or exec login mysql)
Then define a default profile file using your favorite text editor. I chose the bash shell.
--- .bash_profile file ------
PS1='$PWD: '
MYSQL_BASE=/opt/mysql
MYSQL_HOME=/opt/mysql/5.1.42
export MYSQL_BASE MYSQL_HOME
PATH=$MYSQL_HOME/bin:$PATH
--- end of .bash_profile file -------
Set your environment by sourcing your profile file.
$ cd $MYSQL_HOME
$ . ./.bash_profile
MySQL Directory Organization
A good way to separate MySQL files and software:
- /opt/mysql/5.1.42 - Symbolic link to software directory location
- /db01/mysql01/data - Data directory for MySQL
- /db01/mysql01/binlogs - Binary log files location
- /db01/mysql01/admin - Administration files location
- /db01/mysql01/backups - Backup files location
- /db01/mysql01/innodata - InnoDB shared location
- /db01/mysql01/innologs - InnoDB transaction logs location
Before going further
- Using the wrong binary for your hardware or OS.
- Search paths find a preinstalled version of mysql that was loaded with the OS. This command will show you the default search path MySQL uses.
Use a template file in the support-files directory.
$ cd /opt/mysql/5.1.42
$ cp support-files/my-small.cnf my.cnf
basedir=/opt/mysql/5.1.42
datadir=/db01/mysql01/data
log-error=/db01/mysql01/admin/mysql01.err
pid-file=/db01/mysql01/admin/mysql01.pid
log-bin=/db01/mysql01/binlogs/mysql01-bin
innodb_data_home_dir=/db01/mysql01/innodata
innodb_data_file_path=ibdata01:50M;ibdata02:50M:autoextend:max:2000M
innodb_log_group_home_dir=/db01/mysql01/innologs
#-----------------------------------------------------
I would also recommend changing the parameter thread_stack=128k to a minimum of 256k.
$ scripts/mysql_install_db --datadir=/db01/mysql01/data --basedir=$MYSQL_HOME
$ cd /opt/mysql/5.1.42
$ bin/mysqld_safe --defaults-file=$MYSQL_HOME/my.cnf &
Verify you can get into the server. Initial setup has no passwords. If this works you have a good server. The show command should display the mysql, test and information_schema databases.
$ mysql
mysql> show databases;
mysql> exit
Clean up the database server by adding passwords and getting rid of anonymous users. The MySQL database super user is called root. This step will add a password for this MySQL database user.
$ cd $MYSQL_HOME
$ bin/mysql_secure_installation
$ bin/mysqld_safe --defaults-file= $MYSQL_HOME/my.cnf &
# ---- Steps performed as root OS user. ---------------
# mkdir -p /opt/mysql
# cp /root/Desktop/mysql-5.1.42-linux-x86_64-glibc23.tar.gz /opt/mysql
# cd /opt/mysql
# tar zxvf mysql-5.1.42-linux-x86_64-glibc23.tar.gz
# ln -s mysql-5.1.42-linux-x86_64-glibc23.tar.gz 5.1.42
# mkdir -p /db01/mysql01
# cd /db01/mysql01
# mkdir data binlogs admin backups innodata innologs
# groupadd -g 300 mysql
# useradd -u 300 -g 300 -d /home/mysql -s /bin/bash -c "MySQL DBA" mysql
# passwd mysql
# chown -R mysql:mysql /opt/mysql /db01/mysql01
# su - mysql
# ---- Steps performed as mysql OS user ---------------
$ cd $MYSQL_HOME
$ cp support-files/my-small.cnf my.cnf
# Make these additions in my.cnf file below [mysqld]
#----------------------
basedir=/opt/mysql/5.1.42
datadir=/db01/mysql01/data
log-error=/db01/mysql01/admin/mysql01.err
pid-file=/db01/mysql01/admin/mysql01.pid
log-bin=/db01/mysql01/binlogs/mysql01-bin
innodb_data_home_dir=/db01/mysql01/innodata
innodb_data_file_path=ibdata01:50M;ibdata02:50M:autoextend:max:2000M
innodb_log_group_home_dir=/db01/mysql01/innologs
#---------------------------------------
$ bin/mysqld_safe --defaults-file=$MYSQL_HOME/my.cnf &
$ bin/mysql_secure_installation