How to move mysql5.7.19 data storage location in Centos7

How to move mysql5.7.19 data storage location in Centos7

Scenario: As the amount of data increases, the disk where MySQL is located is full, and the data needs to be moved to a disk with larger space.

method:

1. Shut down the mysql service

service mysqld stop

2. Move the data directory to a disk with larger space

cp -a /usr/local/mysql/data/ /home/mysqldata/

-a: equivalent to -pdr (parameters pdr are: retain permissions, copy the soft link itself, recursive copy);

3. Modify the configuration file my.cnf

... 
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES 
basedir = /usr/local/mysql 
#datadir = /usr/local/mysql/data 
datadir = /home/mysqldata/data 
#log-error = /usr/local/mysql/data/mysql_error.log 
log-error = /home/mysqldata/data/mysql_error.log 
#pid-file = /usr/local/mysql/data/mysql.pid 
pid-file = /home/mysqldata/data/mysql.pid 
 
#socket =/usr/local/mysql/data/mysql.sock 
socket = /tmp/mysql.sock 
port=3701 
...

4. Start the mysql service

service mysqld stop

Summarize

The above is the Centos7 mobile mysql5.7.19 data storage location introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • Two ways of storing scrapy data in MySQL database (synchronous and asynchronous)
  • Python example of storing JSON-like data in MySQL
  • How to install MySQL 5.7 on Ubuntu and configure the data storage path
  • How to change the database data storage directory in MySQL
  • Detailed example of MySQL data storage process parameters
  • How to implement Mysql switching data storage directory
  • Solution to changing the data storage location of the database in MySQL 5.7
  • MySQL database architecture details
  • MySQL spatial data storage and functions

<<:  A brief discussion on the alternative method of $refs in vue2 in vue3 combined API

>>:  Introduction to the use and disabling of transparent huge pages in Linux

Recommend

Linux Autofs automatic mount service installation and deployment tutorial

Table of contents 1. Introduction to autofs servi...

Analysis of Vue element background authentication process

Preface: Recently, I encountered a management sys...

64-bit CentOs7 source code installation mysql-5.6.35 process sharing

First install the dependent packages to avoid pro...

InnoDB engine redo file maintenance method

If you want to adjust the size and number of Inno...

How to restore data using binlog in mysql5.7

Step 1: Ensure that MySQL has binlog enabled show...

7 native JS error types you should know

Table of contents Overview 1. RangeError 2. Refer...

JavaScript implementation of a simple addition calculator

This article example shares the specific code of ...

Docker enables seamless calling of shell commands between container and host

As shown below: nsenter -t 1 -m -u -n -i sh -c &q...

Learn Node.js from scratch

Table of contents url module 1.parse method 2. fo...

How to use Docker+DockerCompose to encapsulate web applications

Table of contents Technology Stack Backend build ...

Native js to implement drop-down box selection component

This article example shares the specific code of ...

Essential conditional query statements for MySQL database

Table of contents 1. Basic grammar 2. Filter by c...

Learn MySQL in a simple way

Preface The database has always been my weak poin...

The difference between JS pre-parsing and variable promotion in web interview

Table of contents What is pre-analysis? The diffe...

5 MySQL GUI tools recommended to help you with database management

There are many database management tools for MySQ...