Today, I set up a newly purchased Alibaba Cloud ECS environment (Ubuntu 16.04 LTS). I need to save the MySQL data on the newly mounted disk (mounted to /mnt). First, I stop the MySQL service, and then check the location where the MySQL data is saved: vi /etc/mysql/mysql.conf.d/mysqld.cnf I found cp -r /var/lib/mysql /mnt chown -R mysql:mysql /mnt/mysql After the copy is complete, I thought everything was ready, so I started the mysql service: systemctl start mysql But I found that the startup failed, so I looked at the mysql error log: tail -f -n100 /var/log/mysql/error.log The error information is as follows: [Warning] Can't create test file /mnt/mysql/iZwz9c03srb2lq9l374if5Z.lower-test If you think about it carefully, there should be no problem with the mysql configuration. Check the apparmor configuration: vi /etc/apparmor.d/usr.sbin.mysqld The following configuration was found: # Allow data dir access /var/lib/mysql/ r, /var/lib/mysql/** rwk, What a pitfall. I just changed # Allow data dir access /var/lib/mysql/ r, /var/lib/mysql/** rwk, /mnt/mysql/ r, /mnt/mysql/** rwk, save. Restart the apparmor service: service apparmor restart Then start the mysql service again: systemctl start mysql The service finally started successfully. . . The above is the editor's introduction to solving the error problem caused by modifying mysql data_dir. I hope it will be helpful to everyone. If you have any questions, please leave me a message and I will reply to you in time. Thank you very much for your support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: Detailed explanation of the pitfalls of nginx proxy socket.io service
>>: The core process of nodejs processing tcp connection
After Vmvare sets the disk size of the virtual ma...
Table of contents Preface 1. Introduction to Axio...
Introduction: Nginx (pronounced the same as engin...
Hello everyone, I am Tony, a teacher who only tal...
VNC is a remote desktop protocol. Follow the inst...
Table of contents 1. Gojs Implementation 1. Drawi...
Whether it is the background image or the text siz...
All blogs listed below are original and uniquely ...
This article shares the specific code of js to re...
Table of contents Basic Edition Step 1: Configure...
Recently, when I was doing a practice project, I ...
This article mainly introduces the sample code of...
Table of contents 1. Customize plan tasks 2. Sync...
Preface Not long ago, I combined browser-sync+gul...
Table of contents 1. Scenario description: 2. Cas...