2014-01-23 46 views
0

運行當我安裝XAMPP那麼MySQL開始 但現在我有mysql的麻煩MySQL是不是在XAMPP

我的SQL不運行

和錯誤日誌

2014-01-23 21:45:06 5264 [Note] Plugin 'FEDERATED' is disabled. 
2014-01-23 21:45:06 15dc 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-01-23 21:45:06 5264 [Note] InnoDB: The InnoDB memory heap is disabled 
2014-01-23 21:45:06 5264 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions 
2014-01-23 21:45:06 5264 [Note] InnoDB: Compressed tables use zlib 1.2.3 
2014-01-23 21:45:06 5264 [Note] InnoDB: Not using CPU crc32 instructions 
2014-01-23 21:45:06 5264 [Note] InnoDB: Initializing buffer pool, size = 16.0M 
2014-01-23 21:45:06 5264 [Note] InnoDB: Completed initialization of buffer pool 
2014-01-23 21:45:06 5264 [Note] InnoDB: Highest supported file format is Barracuda. 
2014-01-23 21:45:06 5264 [Note] InnoDB: The log sequence numbers 0 and 0 in ibdata files do not match the log sequence number 2472401 in the ib_logfiles! 
2014-01-23 21:45:06 5264 [Note] InnoDB: Database was not shutdown normally! 
2014-01-23 21:45:06 5264 [Note] InnoDB: Starting crash recovery. 
2014-01-23 21:45:06 5264 [Note] InnoDB: Reading tablespace information from the .ibd files... 
2014-01-23 21:45:06 5264 [ERROR] InnoDB: Attempted to open a previously opened tablespace. Previous tablespace mysql/slave_relay_log_info uses space ID: 3 at filepath: .\mysql\slave_relay_log_info.ibd. Cannot open tablespace wordpress/wp_terms which uses space ID: 3 at filepath: .\wordpress\wp_terms.ibd 
InnoDB: Error: could not open single-table tablespace file .\wordpress\wp_terms.ibd 
InnoDB: We do not continue the crash recovery, because the table may become 
InnoDB: corrupt if we cannot apply the log records in the InnoDB log to it. 
InnoDB: To fix the problem and start mysqld: 
InnoDB: 1) If there is a permission problem in the file and mysqld cannot 
InnoDB: open the file, you should modify the permissions. 
InnoDB: 2) If the table is not needed, or you can restore it from a backup, 
InnoDB: then you can remove the .ibd file, and InnoDB will do a normal 
InnoDB: crash recovery and ignore that table. 
InnoDB: 3) If the file system or the disk is broken, and you cannot remove 
InnoDB: the .ibd file, you can set innodb_force_recovery > 0 in my.cnf 
InnoDB: and force InnoDB to continue crash recovery here. 

我該如何解決這個問題

+0

您使用的是哪個版本? – ComFreek

+0

我正在使用php 5.5.1 – user3228634

+3

你在這個輸出中有一系列的建議。你有嘗試過嗎? –

回答

0

您可以嘗試刪除ibdata1文件: C:\ xampp \ mysql \ data

根據您的xampp安裝文件夾更改'C:\ xampp'。 請記住在下面的步驟後重新啓動xampp。

0

答案就在你的問題

2014-01-23 21:45:06 5264 [ERROR] InnoDB: Attempted to open a previously opened tablespace. Previous tablespace mysql/slave_relay_log_info uses space ID: 3 at filepath: .\mysql\slave_relay_log_info.ibd. Cannot open tablespace wordpress/wp_terms which uses space ID: 3 at filepath: .\wordpress\wp_terms.ibd 
InnoDB: Error: could not open single-table tablespace file .\wordpress\wp_terms.ibd 
InnoDB: We do not continue the crash recovery, because the table may become 
InnoDB: corrupt if we cannot apply the log records in the InnoDB log to it. 
InnoDB: To fix the problem and start mysqld: 
InnoDB: 1) If there is a permission problem in the file and mysqld cannot 
InnoDB: open the file, you should modify the permissions. 
InnoDB: 2) If the table is not needed, or you can restore it from a backup, 
InnoDB: then you can remove the .ibd file, and InnoDB will do a normal 
InnoDB: crash recovery and ignore that table. 
InnoDB: 3) If the file system or the disk is broken, and you cannot remove 
InnoDB: the .ibd file, you can set innodb_force_recovery > 0 in my.cnf 
InnoDB: and force InnoDB to continue crash recovery here. 

要簡單地說,MySQL不能讀你\ WordPress的\ wp_terms.ibd因爲關機不當的文件,並有該文件已損壞的可能性。 。

如果您不需要該數據庫,請按照步驟3操作

+0

thanx尋求幫助 – user3228634