Change MySQL data file storage path in Linux

Source: Internet
Author: User
A lot of times, MySQL data will be very large, the data by default in the/var/lib/mysql, because the/var divided the space is not big enough, so we need to change the MySQL data storage path, put it into the large partition, in order to be able to cope with the MySQL data growth.
1. Set up a new storage path
Mkdir-p/data/mysql
2. Copy existing data
Cp-r/var/lib/mysql/*/data/mysql
3. Modify Permissions
Chown-r Mysql:mysql/data/mysql
4. Modify the configuration file
VI/ETC/MYSQL/MY.CNF
    DataDir =/data/mysql
5. Modify Startup file
Vi/etc/apparmor.d/usr.sbin.mysqld
#把
/var/lib/mysql R,
    /var/lib/mysql/** Rwk,
#改成
/data/mysql R,
    /data/mysql/** Rwk,
6. Restart Service
Restart AppArmor
/etc/init.d/apparmor Restart
    /etc/init.d/mysql restart
This modification is complete.
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.