How to Change default MySQL data Directory in Linux

Channel: Linux
Abstract: MySQL stores all the files under /var/lib/mysql directory. Most of the operating systems have mounted /var directory on root (/) file system. This is

MySQL is a popular relational database management system (RDMS). It is widely used by web applications for storing data permanently. MySQL is available for all the major operating systems like Windows, Linux, and macOS. You can find the installation instructions here.

On the Linux system, MySQL stores all the files under /var/lib/mysql directory. Most of the operating systems have mounted /var directory on root (/) file system. This is fine for the development systems but we don’t recommend keeping/var/lib/mysql on the root file system for production servers.

In this tutorial, we will help you to change the default data directory for MySQL and move it to some other location.

Steps to Change Default data Directory in MySQL

Follow the below steps to make all the changes. In some cases service name, default data directory or MySQL configuration file path change. So use all the command as per you system settings.

  1. Stop MySQL – Before making any changes, first make sure to stop mysql service
    sudo systemctl stop mysql 
    
  2. Copy data directory – Now copy default MySQL data directory (/var/lib/mysql) to other location as per your requirement. Also set the required MySQL ownership on new directory location. As per below command, we are relocating data directory to /data/mysql.
    cp -rap /var/lib/mysql /data/mysql 
    chown mysql.mysql /data/mysql 
    
  3. Update configuration file – Edit MySQL configuration file /etc/my.cnf and update the value of datadir and socket variable as below.
      Change From:
      datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock12datadir=/var/lib/mysqlsocket=/var/lib/mysql/mysql.sock
      Change To:
      datadir=/data/mysql socket=/data/mysql/mysql.sock12datadir=/data/mysqlsocket=/data/mysql/mysql.sock
  4. Start MySQL – After making all the above changes, start MySQL service. Now it will use new data directory path
    sudo systemctl start mysql 
    

That’s it. With the help of help instructions, you will easily change the default data directory location for MySQL and MariaDB servers on Linux systems.

Ref From: tecadmin

Related articles