SilentCry
SilentCry

Reputation: 2102

EasyPHP 16.1.1 unable to start MySQL

Firstly, after first run after installation, everything works fine; but now, after hour and restart later, when I start EasyPHP Dashboard, MySQL is not running. When I try to start it, loading circle appears, then page is refreshed and MySQL is still not started - without any message. I erased Error log and directly after try to run, it writes following:

2016-05-21T08:39:32.432081Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2016-05-21T08:39:32.432081Z 0 [Warning] 'NO_ZERO_DATE', 'NO_ZERO_IN_DATE' and 'ERROR_FOR_DIVISION_BY_ZERO' sql modes should be used with strict mode. They will be merged with strict mode in a future release.
2016-05-21T08:39:32.432081Z 0 [Warning] 'NO_AUTO_CREATE_USER' sql mode was not set.
2016-05-21T08:39:32.432081Z 0 [Warning] Insecure configuration for --secure-file-priv: Current value does not restrict location of generated files. Consider setting it to a valid, non-empty path.
2016-05-21T08:39:32.432081Z 0 [Note] ..\eds-binaries\dbserver\mysql5711x86x160521094439\bin\eds-dbserver.exe (mysqld 5.7.11) starting as process 1732 ...

Do you have any idea, what happens and how to solve it?

EDIT:After a few reinstalls is situation still same. Directly after installation everything works, but after easyphp is closed, MySQL never starts again. Errorlog always says, that mysql is starting process xxxx, but that process never starts.

Upvotes: 4

Views: 4377

Answers (2)

Marco
Marco

Reputation: 1093

Have you ever installed mysql before ?

You can check in services.msc. If so, open a terminal in administrator and run sc delete mysql. mysql, in the command, must be the name of the service.

Restart, reinstall EasyPHP and it might be solved.

Upvotes: 1

Shashanth
Shashanth

Reputation: 5190

Install MySQL Server separately don't install the MySQL that comes with EasyPHP. And the MySQL service starts at the start of Operating System, you don't need to start the service in EasyPHP.

Please note that if you want to use this installation with phpMyAdmin, you should adjust configuration of phpMyAdmin (likely your MySQL password) or alternatively you can use Database GUI tools like MySQL Workbench.

Hope this helps you. [I am using XAMPP with the same procedure. It works for me]

Upvotes: 2

Related Questions