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

前端 未结 7 1575
失恋的感觉
失恋的感觉 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:31

    Although late but putting answer here so that solution that helped me can help someone. I took following steps:

    1. Added more RAM to sever
    2. Decrease the value of innodb-buffer-pool size
    3. Set innodb_log_file_size
    4. Restart mysql

    Example of addition to my.cnf:

    innodb_buffer_pool_size = 10M
    innodb_log_file_size = 1000M
    

提交回复
热议问题