Possible Duplicate:
multiple file systems for mysql

hi,

How can I put mysql databases in different partition (linux - Ubuntu)?

Thanks, yosef

link|improve this question

feedback

closed as exact duplicate by Chopper3 Mar 21 '11 at 0:11

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

Create the new partition and filesystem. Mount it somewhere. Stop mysql and copy the entire contents of /var/lib/mysql to the new location. Be sure to preserve permissions and ownership.

You now have a few options (all assuming you mounted the new filesystem in /opt/mysql_data:

  1. Delete /var/lib/mysql and create a symlink from it to the new directory. For example:

    ln -s /opt/mysql_data /var/lib/mysql
    
  2. Create a file in /etc/mysql/conf.d called "local_configs.cnf" and put the following lines in that file:

    [mysqld]
    datadir=/opt/mysql_data
    
  3. After the data is copied, mount the new filesystem directly on /var/lib/mysql.

Whichever path you take, when you start mysql back up again it will be using the new location.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.