Solution to MySQL being unable to start due to excessive memory configuration

Solution to MySQL being unable to start due to excessive memory configuration

Problem Description

MySQL reports an error when starting. Check the error log.

[ERROR] InnoDB: Cannot allocate memory for the buffer pool

(Memory required by the InnoDB engine cannot be allocated from the cache pool)

Solution

You need to adjust the size settings of innodb_buffer_pool_size and key_buffer_size in the MySQL configuration file my.cnf, and increase the memory allocation appropriately, generally adjusted to half of the system memory.

First use free -m to check the system memory size and check that it is 1G memory


Then vi /etc/my.cnf and adjust innodb_buffer_pool_size、key_buffer_size to 500M each.

Note: my.cnf is subject to the actual configuration file path.

Restart OK

Summarize

The above is the full content of this article. I hope that the content of this article can bring some help to your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • How to solve the problem that MySQL cannot start because it cannot create temporary files
  • After reinstalling MySQL, the MySQL service cannot be started
  • Solution to MySQL 5.7 not starting under Windows
  • Mysql5.7 service cannot be started. Graphical solution tutorial
  • How to solve the problem that MySQL cannot start because it cannot create PID

<<:  Sample code on how to implement page caching in vue mobile project

>>:  Architecture and component description of docker private library Harbor

Recommend

Understand all aspects of HTTP Headers with pictures and text

What are HTTP Headers HTTP is an abbreviation of ...

Sending emails in html is easy with Mailto

Recently, I added a click-to-send email function t...

Alibaba Cloud Server Tomcat cannot be accessed

Table of contents 1. Introduction 2. Solution 2.1...

HTML text escape tips

Today I saw a little trick for HTML text escaping ...

Pessimistic locking and optimistic locking in MySQL

In relational databases, pessimistic locking and ...

Detailed explanation of dynamically generated tables using javascript

*Create a page: two input boxes and a button *Cod...

Mybatis paging plug-in pageHelper detailed explanation and simple example

Mybatis paging plug-in pageHelper detailed explan...

Detailed explanation of basic syntax and data types of JavaScript

Table of contents Importing JavaScript 1. Interna...

mysql: [ERROR] unknown option '--skip-grant-tables'

MySQL database reports ERROR 1045 (28000): Access...

Detailed explanation based on event bubbling, event capture and event delegation

Event bubbling, event capturing, and event delega...

Let's talk about the Vue life cycle in detail

Table of contents Preface 1. Life cycle in Vue2 I...

The image element img has extra blank space in IE6

When doing DIV+CSS layout of the page, it is very...

CSS flexible layout FLEX, media query and mobile click event implementation

flex layout Definition: The element of Flex layou...