记mysql 启动不了了的解决方法

系统: centos7php

本地的环境,mysql启动不了,查看 /var/log/mysqld.log 有如下内容html

2018-12-24T08:05:38.090527Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2018-12-24T08:05:38.092747Z 0 [Note] /usr/sbin/mysqld (mysqld 5.7.24) starting as process 8111 ...
2018-12-24T08:05:38.097352Z 0 [Note] InnoDB: PUNCH HOLE support available
2018-12-24T08:05:38.097394Z 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2018-12-24T08:05:38.097403Z 0 [Note] InnoDB: Uses event mutexes
2018-12-24T08:05:38.097409Z 0 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
2018-12-24T08:05:38.097414Z 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
2018-12-24T08:05:38.097419Z 0 [Note] InnoDB: Using Linux native AIO
2018-12-24T08:05:38.097778Z 0 [Note] InnoDB: Number of pools: 1
2018-12-24T08:05:38.097922Z 0 [Note] InnoDB: Not using CPU crc32 instructions
2018-12-24T08:05:38.099800Z 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M
2018-12-24T08:05:38.111257Z 0 [Note] InnoDB: Completed initialization of buffer pool
2018-12-24T08:05:38.114082Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
2018-12-24T08:05:38.168814Z 0 [Note] InnoDB: Highest supported file format is Barracuda.
2018-12-24T08:05:38.174135Z 0 [ERROR] InnoDB: Ignoring the redo log due to missing MLOG_CHECKPOINT between the checkpoint 211934516 and the end 211934208.
2018-12-24T08:05:38.174251Z 0 [ERROR] InnoDB: Plugin initialization aborted with error Generic error
2018-12-24T08:05:39.877511Z 0 [ERROR] Plugin 'InnoDB' init function returned error.
2018-12-24T08:05:39.877609Z 0 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
2018-12-24T08:05:39.877631Z 0 [ERROR] Failed to initialize builtin plugins.
2018-12-24T08:05:39.877646Z 0 [ERROR] Aborting

参考 mysql 启动不了了 中写的
MySQL: Failed Registration of InnoDB as a Storage Enginemysql

Rename or move both the ./ib_logfile0 and ./ib_logfile1 files, and then start the MySQL server.

进入 /var/lib/mysql 重命名或者移除 ./ib_logfile0 和 ./ib_logfile1 文件,最后启动mysql服务器sql

若是数据库中 表查询或者更新没法进行,能够尝试使用 mysql的客户端工具(如:phpmyadmin) 导出这个数据库文件,删除这个个数据库的表,而后从新导入刚才导出的数据库文件数据库