Getting error “Plugin 'InnoDB' registration as a STORAGE ENGINE failed” when starting MySQL

前端 未结 7 1667
失恋的感觉
失恋的感觉 2021-02-01 05:54

I found many similar question on Stackoverflow but didn\'t get the exact error solution. My issue is when starting MySQL service on one of the Dedicated Centos 6.5 machine, I am

7条回答
  •  误落风尘
    2021-02-01 06:43

    I have the same problems, this my solution:

    1. Add more RAM to the server

    2. Decrease the value of innodb-buffer-pool size in the config file:

      sudo nano /etc/mysql/my.cnf

      innodb_buffer_pool_size = 10M
      

    After save /etc/mysql/my.cnf.

    Restart mysql service:

    sudo service mysql restart
    
    exit
    

提交回复
热议问题