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:
|
<<: 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
The table is as follows: Code when Unity reads an...
Today, we use uniapp to integrate Echarts to disp...
Concept of SFTP sftp is the abbreviation of Secur...
Starting from Elasticsearch 6.8, free users are a...
Table of contents 1 The role of Apache 2 Apache I...
Traceroute allows us to know the path that inform...
Today I was dealing with the issue of migrating a...
Preface: The most commonly used MySQL logical bac...
Table of contents 1. Cancel duplicate requests 2....
1. Install mutt sudo apt-get install mutt 2. Inst...
Table of contents 1. Database Operation 2. Data T...
Two methods to implement Mysql remote connection ...
When it comes to styling our web pages, we have t...
Enctype : Specifies the type of encoding the brows...
1. Problem The problems encountered when initiali...