wamp - mysql service doesent work on windows 7 -


i trying start sql service on windows

in command prompt continuously have error message:

error 2003 (hy000): can't connect mysql server on 'localhost' (10061)

in sql log file got following

2015-08-31 00:53:41 5348 [note] plugin 'federated' disabled. 2015-08-31 00:53:41 5348 [note] innodb: using atomics ref count buffer pool pages 2015-08-31 00:53:41 5348 [note] innodb: innodb memory heap disabled 2015-08-31 00:53:41 5348 [note] innodb: mutexes , rw_locks use windows interlocked functions 2015-08-31 00:53:41 5348 [note] innodb: compressed tables use zlib 1.2.3 2015-08-31 00:53:41 5348 [note] innodb: not using cpu crc32 instructions 2015-08-31 00:53:41 5348 [note] innodb: initializing buffer pool, size = 128.0m 2015-08-31 00:53:41 5348 [note] innodb: completed initialization of buffer pool 2015-08-31 00:53:42 5348 [note] innodb: first specified data file .\ibdata1 did not exist: new database created! 2015-08-31 00:53:42 5348 [note] innodb: setting file .\ibdata1 size 12 mb 2015-08-31 00:53:42 5348 [note] innodb: database physically writes file full: wait... 2015-08-31 00:53:42 5348 [error] innodb: cannot create .\ib_logfile101 2015-08-31 00:53:42 5348 [error] plugin 'innodb' init function returned error. 2015-08-31 00:53:42 5348 [error] plugin 'innodb' registration storage engine failed. 2015-08-31 00:53:42 5348 [error] unknown/unsupported storage engine: innodb 2015-08-31 00:53:42 5348 [error] aborting 

how can problem solved ?

please make backup before deleting files.

you need clean replay logs. -ib_logfile0 -ib_logfile1 -ibdata1

refer following post related. on windows file might in xampp\mysql\data directory.

http://www.debian-tutorials.com/how-to-fix-error-unknownunsupported-storage-engine-innodb

please take note means have disabled innodb. want.

check my.inf file. turn innodb support on , off here please.

[mysqld]  innodb=off  ignore-builtin-innodb  skip-innodb default-storage-engine=myisam  default-tmp-storage-engine=myisam 

Comments

Popular posts from this blog

c# - Binding a comma separated list to a List<int> in asp.net web api -

Delphi 7 and decode UTF-8 base64 -

html - Is there any way to exclude a single element from the style? (Bootstrap) -