我试图启动mysql服务器,但它提供了以下错误日志。我试图更改端口号。但这不值得
2014-09-26 09:31:23 3880 [Note] Plugin 'FEDERATED' is disabled.
2014-09-26 09:31:23 f34 InnoDB: Warning: Using innodb_additional_mem_pool_size is DEPRECATED. This option may be removed in future releases, together with the option innodb_use_sys_malloc and with the InnoDB's internal memory allocator.
2014-09-26 09:31:23 3880 [Note] InnoDB: Using atomics to ref count buffer pool pages
2014-09-26 09:31:23 3880 [Note] InnoDB: The InnoDB memory heap is disabled
2014-09-26 09:31:23 3880 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions
2014-09-26 09:31:23 3880 [Note] InnoDB: Compressed tables use zlib 1.2.3
2014-09-26 09:31:23 3880 [Note] InnoDB: Not using CPU crc32 instructions
2014-09-26 09:31:23 3880 [Note] InnoDB: Initializing buffer pool, size = 16.0M
2014-09-26 09:31:23 3880 [Note] InnoDB: Completed initialization of buffer pool
2014-09-26 09:31:23 3880 [Note] InnoDB: Highest supported file format is Barracuda.
2014-09-26 09:31:23 3880 [Note] InnoDB: Log scan progressed past the checkpoint lsn 3997169
2014-09-26 09:31:23 3880 [Note] InnoDB: Database was not shutdown normally!
2014-09-26 09:31:23 3880 [Note] InnoDB: Starting crash recovery.
2014-09-26 09:31:23 3880 [Note] InnoDB: Reading tablespace information from the .ibd files...
2014-09-26 09:31:24 3880 [Note] InnoDB: Restoring possible half-written data pages
2014-09-26 09:31:24 3880 [Note] InnoDB: from the doublewrite buffer...
InnoDB: Doing recovery: scanned up to log sequence number 3997285
2014-09-26 09:31:24 3880 [Note] InnoDB: 128 rollback segment(s) are active.
2014-09-26 09:31:25 3880 [Note] InnoDB: Waiting for purge to start
2014-09-26 09:31:25 3880 [Note] InnoDB: 5.6.16 started; log sequence number 3997285
2014-09-26 09:31:25 3880 [Note] Server hostname (bind-address): '*'; port: 3306
2014-09-26 09:31:25 3880 [Note] IPv6 is available.
2014-09-26 09:31:25 3880 [Note] - '::' resolves to '::';
2014-09-26 09:31:25 3880 [Note] Server socket created on IP: '::'.
2014-09-26 09:31:25 3880 [ERROR] Fatal error: Can't open and lock privilege tables: Incorrect file format 'user'
答案 0 :(得分:3)
复制这3个文件:
来自C:\ xampp \ mysql \ backup \ mysql 至 C:\ XAMPP \ MySQL的\数据\ MySQL的
并覆盖它。
答案 1 :(得分:1)
我也遇到了同样的问题。但是我的数据对我来说非常重要。我也看网上,但没有任何解决方法。 然后,我解决了这个问题,还取回了数据库中的所有数据。 这是我的服务器路径:D:\ server \ mysql \ data 解决:
步骤1:转到D:\ server \ mysql \ data
然后复制数据库的所有文件夹以及该文件的 ibdata1 。
第2步:在服务器文件夹之外剪切htaccess的完整文件夹。
步骤3:然后卸载xmapp,然后在同一位置安装相同版本的xmapp, 然后将所有文件替换为备份文件。
第4步:重新启动您的xmapp。
然后转到您的数据库,您将获得所有数据,并且一切都会正常进行。 但是,如果您查看您的mysql错误日志,则问题仍然存在。那还没有解决。
答案 2 :(得分:0)
这里显示的是真正的问题:
2014-09-26 09:31:25 3880 [ERROR] Fatal error: Can't open and lock privilege tables: Incorrect file format 'user'
C:\your\xampp\mysql\data\mysql\user*
中至少有一个表格文件似乎有缺陷。由于这对服务器至关重要,因此无法启动。
处理此问题的可能方法:
C:\your\xampp\mysql\data\mysql\user*
。C:\your\new\mysql\data\mysql\user*
复制到C:\your\xampp\mysql\data\mysql\
。由于此操作仅包含默认用户,因此您必须手动添加您在旧的,损坏的安装中使用过的用户。答案 3 :(得分:0)
我遇到了同样的问题,Mysql没有在Xampp上运行。我从其他同事系统获得了3个user *文件,并将其复制/覆盖到C:/ xampp / mysql / data / mysql /文件夹中。奏效了。