The default storage directory of mysql is This article uses MySQL 8.0.11, which is different from MySQL 8.0.20. For data migration of version 8.0.20, please see another blog: mysql8.0.20 data migration 1. Stop the mysql service first: service mysql stop 2. Create the directory location where you need to store it and grant permissions: mkdir -p /bak/mysql_data chmod 766 /bak/mysql_data 3. Transfer the original data. Use cp -a to copy it (first enter the default directory /usr/local/ and copy the entire mysql directory): cp -a mysql /bak/mysql_data/ 4. Modify the mysql configuration file /etc/my.cnf: vim /etc/my.cnf Original settings: [client] port=3306 socket=/tmp/mysql.sock [mysqld] port=3306 user=mysql socket=/tmp/mysql.sock basedir=/usr/local/mysql/mysql8.0 datadir=/usr/local/mysql/mysql8.0/data lc-messages-dir = /usr/local/mysql/mysql8.0/share character-set-server=utf8 Modified settings: [client] port=3306 socket=/tmp/mysql.sock [mysqld] port=3306 user=root socket=/tmp/mysql.sock basedir=/usr/local/mysql/mysql8.0 datadir=/bak/mysql_data/mysql/mysql8.0/data lc-messages-dir = /usr/local/mysql/mysql8.0/share character-set-server=utf8 This involves a permission issue, and the user needs to be changed to root 5. Restart the mysql service: service mysql restart mysql can start normally and it's OK~ If the problem "The server quit without updating PID file(…)" appears during startup, please refer to another blog: This article uses MySQL 8.0.11, which is different from MySQL 8.0.20. For data migration of version 8.0.20, please see another blog: mysql8.0.20 data migration This is the end of this article about the implementation of MySQL 8.0.11 data directory migration. For more relevant MySQL data directory migration content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Three useful codes to make visitors remember your website
>>: CSS: visited pseudo-class selector secret memories
environment Centos 6.6 MySQL 5.7 Install If the s...
This article uses an example to illustrate the us...
1. What is a virtual host? Virtual hosts use spec...
MySQL backup Cold backup:停止服務進行備份,即停止數據庫的寫入Hot ba...
background The Agile model is widely used, and te...
Preface When we write code, we occasionally encou...
The operating environment of this tutorial: Windo...
<div align="center"> <table sty...
Table of contents this Method In the object Hidde...
1. What are the templates for ASP.NET Web applicat...
Docker is an open source project that provides an...
Preface This article mainly introduces the releva...
introduction As usual, let's start with a sce...
Database modification or deletion operations may ...
The test environment of this experiment: Windows ...