To check which process is running on port 3306 execute below command in command prompt.
netstat -ano | findstr 3306
This will give you the PID of the process running on port 3306
To stop that process use the following command.
taskkill /F /PID 13896
replace 13896 with your PID.
you can disable autostart for that process from the services window.