Alejandro Liébana
Alejandro Liébana

Reputation: 300

WAMP server suddenly stops working

I was working with WAMP server and wordpress yesterday and today when I started WAMP the database get an error.

When I run wamp status I get this: enter image description here

And in MySQL log I get:

2017-03-30T23:30:44.499590Z 0 [ERROR] InnoDB: Unable to create temporary file; errno: 0
2017-03-30T23:30:44.507591Z 0 [ERROR] InnoDB: Plugin initialization aborted with error Generic error
2017-03-30T23:30:44.509591Z 0 [ERROR] Plugin 'InnoDB' init function returned error.
2017-03-30T23:30:44.510591Z 0 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
2017-03-30T23:30:44.511591Z 0 [ERROR] Failed to initialize plugins.
2017-03-30T23:30:44.511591Z 0 [ERROR] Aborting

Please Help Me. Thanks

Note: is not a problem of Skype!

Upvotes: 0

Views: 680

Answers (1)

cotis08
cotis08

Reputation: 56

Maybe you can try to change the root password of your mysql. Go to the mysql console. You'll see that mysql asks you for a password, but leave it empty (press enter). After that, use this statement "SET PASSWORD = PASSWORD('your_new_password');" Once you do that, you can access to phpmyadmin with the user "root" and the new password you chose. Now, feel free to update/delete the user that was giving you problems.

Upvotes: 2

Related Questions