How to modify the location of data files in CentOS6.7 mysql5.6.33

How to modify the location of data files in CentOS6.7 mysql5.6.33

Problem: The partition where MySQL stores data files has a small capacity and is currently full, causing MySQL to be unable to connect.

Solution:

1. Delete unnecessary data in the partition, such as log files, etc. (cannot solve the fundamental problem)

2. Expand the capacity of a disk

3. Modify the data storage location

To modify the data storage location:

1. View the mysql storage directory

#Installation directory --basedir=/usr
#Data storage location --datadir=/home/mysqlData/mysql
#User --user=mysql
#Log --log-error=/home/mysqlData/mysql/localhost.localdomain.err
#Port --port=3306

2. Stop MySQL service

service mysql stop

3. Create a directory

mkdir /home/mysql
chown -R mysql:mysql /home/mysqlData

4. Data file transfer (move the entire /var/lib/mysql to /home/mysqlData)

cp -afir /var/lib/mysql /home/mysqlData

5. Modify the MySql configuration document /etc/my.cnf configuration document

[client]
port = 3306
#Modified directory socket = /home/mysqlData/mysql/mysql.sock
[mysqld]
port = 3306
default-storage-engine = InnoDB #Default storage engine lower_case_table_names = 1 #Not case sensitive max-connections = 3000
character_set_server=utf8
#The modified directory datadir=/home/mysqlData/mysql
#The modified directory sock=/home/mysqlData/mysql/mysql.sock

6. Modify the MySQL startup script /etc/init.d/mysql

Change the datadir item in the /etc/init.d/mysql file to /home/mysqlData/mysql

vim /etc/init.d/mysql 

7. Start mysql service

service mysql start

The above is the method I introduced to you to modify the location of the data file in CentOS6.7 mysql5.6.33. I hope it will be helpful to you. If you have any questions, please leave me a message and I 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:
  • Python3 implements the method of writing local JSON big data files into MySQL database
  • How to view the storage location of MySQL data files
  • MySQL database migration example by copying data files
  • How to import csv format data file solution into MySQL
  • Using SQL statements to solve the problem of importing large data files into MySQL
  • An illegal shutdown caused the MySQL data table to be damaged.
  • Summary of Cause Analysis and Repair Methods for MYSQL Table Damage (Recommended)
  • Solve the problem that the MySQL database crashes unexpectedly, causing the table data file to be damaged and unable to start

<<:  Detailed explanation of the role of brackets in AngularJS

>>:  Some major setting modification records when upgrading from kubernetes1.5.2 to kubernetes1.10

Recommend

JavaScript implements three common web effects (offset, client, scroll series)

Table of contents 1. Element offset series 2. Ele...

The use of textarea in html and common problems and case analysis

The textarea tag is an HTML tag that we often use....

5 super useful open source Docker tools highly recommended

Introduction The Docker community has created man...

Creating a Secondary Menu Using JavaScript

This article example shares the specific code of ...

MySQL Optimization: Cache Optimization

I am happy that some bloggers marked my article. ...

The difference between char and varchar in MYSQL

CHAR and VARCHAR types are similar, differing pri...

Detailed explanation of the concept of docker container layers

Table of contents 01 Container consistency 02 Con...

How to limit the value range of object keys in TypeScript

When we use TypeScript, we want to use the type s...

Docker custom network container interconnection

Table of contents Preface –link Custom Network As...

MySQL calculates the number of days, months, and years between two dates

The MySQL built-in date function TIMESTAMPDIFF ca...

Two types of tab applications in web design

Nowadays, tabs are widely used in web design, but...

A brief discussion on the understanding of TypeScript index signatures

Table of contents 1. What is an index signature? ...

How to write a Node.JS version of a game

Table of contents Overview Build Process Related ...

Mybatis implements SQL query interception and modification details

Preface One of the functions of an interceptor is...