Databases 4 min read

Resolving MySQL Startup Failure by Adjusting InnoDB Buffer Pool Size

The article details a MySQL server startup failure caused by insufficient memory, shows command outputs and error logs, and explains how reducing the innodb_buffer_pool_size to 64 MB in the my.cnf configuration resolves the issue on a 2 GB Alibaba Cloud instance.

Practical DevOps Architecture
Practical DevOps Architecture
Practical DevOps Architecture
Resolving MySQL Startup Failure by Adjusting InnoDB Buffer Pool Size

The MySQL service fails to start, reporting "MySQL server PID file could not be found" and "The server quit without updating PID file". The failure is observed after executing service mysqld restart on a Linux host.

Inspection of the MySQL data directory reveals large InnoDB files, including ibdata1 (512 MB), ib_logfile0 and ib_logfile1 (256 MB each), and other tablespace files, indicating substantial memory usage.

The error log ( /data/mysql/logs/mysql-error.log) contains warnings such as "innodb_open_files should not be greater than the open_files_limit" and a deprecation notice for INNODB_UNDO_TABLESPACES, followed by a generated temporary root password and a message that the server initialization completed.

Because the Alibaba Cloud instance provides only 2 GB of RAM, the default InnoDB buffer pool size exceeds available memory, preventing MySQL from starting. Editing the configuration file /etc/my.cnf to set innodb_buffer_pool_size=64M reduces memory consumption, after which MySQL starts normally.

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

databaseLinuxInnoDBmysqltroubleshootingstartup
Practical DevOps Architecture
Written by

Practical DevOps Architecture

Hands‑on DevOps operations using Docker, K8s, Jenkins, and Ansible—empowering ops professionals to grow together through sharing, discussion, knowledge consolidation, and continuous improvement.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.