Revision of MariaDB from Tue, 09/20/2016 - 15:29

Revisions allow you to track differences between multiple versions of your content, and revert back to older versions.

Installation
Install the prerequisites:

yum install cmake ncurses-devel

Download the latest version, which was 10.1.17 at the time of writing.

cd /extra/src
wget http://mariadb.mirror.rafal.ca//mariadb-10.1.17/source/mariadb-10.1.17.tar.gz
tar zxf mariadb-10.1.17.tar.gz
cd mariadb-10.1.17

Add a group and user for the mysql daemon. For a Linux system:

groupadd mysql
useradd -g mysql mysql

At this point, we don't need any advanced options, so our configuration options are simply - just the install path:

BUILD/autorun.sh
./configure --prefix=/usr/local/mysql --without-plugins=innobase

Make and install the binaries:

make
make install

Copy the default preferences file:

cp support-files/my-medium.cnf /etc/my.cnf

Because we compiled and installed as root, we need to change the ownership on the installed files so that the mysql user can access them:

chown -R mysql /usr/local/mysql/

Create the MySQL data directory and initialize the user tables.

cd /usr/local/mysql
scripts/mysql_install_db --user=mysql

While most of the installation can be owned by root, the data directory must be owned by the mysql user:

chown -R root .
chown -R mysql data

To test out the installation, start up the MySQL server:

bin/mysqld_safe --user=mysql &

Post-Installation Setup
Secure the root and anonymous accounts:

cd bin
./mysql_secure_installation

Stop the MySQL daemon:

killall mysqld

Automatic startup
We're going to use daemontools.
If you haven't already, install daemontools.

Create a directory for the MySQL service:

mkdir -m 1755 /var/service/mysql
cd /var/service/mysql

Create the /var/service/mysql/run script, making sure to change the servername:

#!/bin/sh
exec 2>&1
exec \
/usr/local/bin/setuidgid mysql \
/usr/local/mysql/bin/mysqld \
--old-passwords \
--basedir=/usr/local/mysql \
--datadir=/usr/local/mysql/data \
--user=mysql \
--pid-file=/usr/local/mysql/data/<servername>.com.pid \
--skip-external-locking \
--port=3306 \
--socket=/tmp/mysql.sock

Make the script executable:

chmod 755 run

Our log script comes from John Simpson's:

mkdir -m 755 log
cd log
wget http://qmail.jms1.net/scripts/service-any-log-run
mv service-any-log-run run
chmod 755 run

Finally, add the service to daemontools by creating the symbolic link in /service

ln -s /var/service/mysql /service/mysql

Confirm that the service is running:

svstat /service/mysql /service/mysql/log

Recent Updates

  • 2 years 2 days ago
  • 2 years 2 days ago
  • 2 years 4 days ago
    php 8.x
  • 2 years 5 days ago
    10.6.7
  • 2 years 1 week ago
    Drop Centos 5/6 stuff