Problem starting mysql in xampp

0

I tried to use xampp but every time I try to start mysql it issues the following error:

Port 3306 in use by ""C:\Program Files\MySQL\MySQL Server 5.7\bin\mysqld.exe" --defaults-file="C:\ProgramData\MySQL\MySQL Server 5.7\my.ini" MYSQL57"!

How do I solve this problem?

    
asked by anonymous 31.01.2017 / 01:33

1 answer

3

You already have Mysql installed on your computer and running on the 3306 port so it is conflicting because xampp is trying to start your Mysql on that same port, the solution is to uninstall what was already or change the port one of them for 3307 for example.

In xampp you can change the Mysql port through the Xampp Control Panel window.

In the MySql config option, you will open a text file for editing, encode the 3306 port, and change it to any other. After changing save and close the file, stop and start the service in xampp.

    
31.01.2017 / 01:41