Labs releases are intended to provide early access to new features. As Gopal notes in his recent blog post About the Data Dictionary Labs Release, there is a notable restriction where upgrading from any previous MySQL database version is not supported.
Today, I thought I would demonstrate how to get the data dictionary lab up and running on a fresh Ubuntu 14.04 installation:
# Download from labs.mysql.com wget http://downloads.mysql.com/snapshots/pb/mysql-5.7.5-labs-dd/mysql-5.7.5-labs-dd-linux-el6-x86_64.tar.gz # extract it to /usr/local/mysql # more or less following instructions in INSTALL-BINARY groupadd mysql useradd -r -g mysql mysql tar -xzf mysql-5.7.5-labs-dd-linux-el6-x86_64.tar.gz mv mysql-5.7.5-labs-dd-linux-el6-x86_64 /usr/local/ ln -s /usr/local/mysql-5.7.5-labs-dd-linux-el6-x86_64 …[Read more]