Innodb system table space maintenance method

Innodb system table space maintenance method

Environmental Description:

There is a running MySQL environment. Because the previous configuration file settings were too simple (no innodb_data_file_path changes were configured), the system table space is now full.

If innodb_data_file_path has not been set before, it will use the default value: innodb_data_file_path=ibdata1:12M; the problem lies here that it is not set

autoextend

Solution:

1. Shut down the already running MySQL

mysqladmin -h127.0.0.1 -uroot -pxxxx shutdown

2. Add a second system tablespace file for mysql, set its size and add the autoextend attribute

[mysqld]
innodb_data_file_path = ibdata1:12M;ibdata2:12M:autoextend

3. Restart mysql

service mysqld start

By the way, if you want to reduce the system table space, you can do it. Generally speaking, you have to start with one;

The general steps are as follows

1. Back up your database with mysqldump

2. Close your mysql database and delete the files under datadir

3. Edit the configuration file to your desired configuration and re-initialize a new MySQL database

4. Restore the database from the dump file in the first step

The above innodb system tablespace maintenance method is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • How to use mysql Innodb tablespace unloading, migration, and loading
  • A brief analysis of MySQL shared tablespace and exclusive tablespace and their conversion
  • MySQL Optimization: InnoDB Optimization

<<:  Use Javascript to implement the function of sending SMS verification code interval

>>:  General Guide to Linux/CentOS Server Security Configuration

Recommend

Vue encapsulation component upload picture component

This article example shares the specific code of ...

js to realize login and registration functions

This article example shares the specific code of ...

A brief analysis of Linux resolv.conf

1. Introduction resolv.conf is the configuration ...

CSS--overflow:hidden in project examples

Here are some examples of how I use this property ...

A brief discussion on the lazy loading attribute pattern in JavaScript

Table of contents 1. Introduction 2. On-demand at...

Understanding Vuex in one article

Table of contents Overview Vuex four major object...

Vue uses the method in the reference library with source code

The official source code of monaco-editor-vue is ...

mysql query data for today, this week, this month, and last month

today select * from table name where to_days(time...

Record a troubleshooting record of high CPU usage of Tomcat process

This article mainly records a tomcat process, and...

Implementation of vertical centering with unknown height in CSS

This article mainly introduces the implementation...

Brief analysis of the various versions of mysql.data.dll driver

Here is the mysql driver mysql.data.dll Notice: T...

Introduction to CSS3 color value RGBA and gradient color usage

Before CSS3, gradient images could only be used a...