Portas conflitantes do mySQL e XAMPP

Estou usando o XAMPP / Apache há um tempo e recentemente decidi instalar o MySQL. No entanto, parece que eles são conflitantes. O MySQL parece ter preferência e está funcionando corretamente, no entanto, o XAMPP / Apache está me enviando esta mensagem de erro ao tentar iniciar o Apache:

03:07:32 AM  [Apache]   Attempting to start Apache app...
03:07:33 AM  [Apache]   Status change detected: running
03:07:33 AM  [Apache]   Status change detected: stopped
03:07:33 AM  [Apache]   Error: Apache shutdown unexpectedly.
03:07:33 AM  [Apache]   This may be due to a blocked port, missing dependencies, 
03:07:33 AM  [Apache]   improper privileges, a crash, or a shutdown by another method.
03:07:33 AM  [Apache]   Press the Logs button to view error logs and check
03:07:33 AM  [Apache]   the Windows Event Viewer for more clues
03:07:33 AM  [Apache]   If you need more help, copy and post this
03:07:33 AM  [Apache]   entire log window on the forums

Eu tentei seguir as instruções aqui:http://www.complete-concrete-concise.com/web-tools/how-to-change-the-apache-port-in-xampp

E eu tentei mudar o documento: httpd.conf em xampp / apache / conf

Alterando 'Listen 80' para várias coisas, e depois de reiniciar o aplicativo, tive a mesma mensagem de erro.

Agradecemos imensamente qualquer ajuda nesse assunto. Eu preferiria não remover o mySQL apenas para usar o XAMPP, mas o fará se não houver como eles operem simultaneamente.

Desde já, obrigado.

EDITAR:

Minha razão para acreditar que está em conflito com o MySQL é esta:

03:26:51 AM  [mysql]    Problem detected!
03:26:51 AM  [mysql]    Port 3306 in use by ""C:\Program Files\MySQL\MySQL Server 5.6\bin\mysqld.exe" --defaults-file="C:\ProgramData\MySQL\MySQL Server 5.6\my.ini" MySQL56"!
03:26:51 AM  [mysql]    MySQL WILL NOT start without the configured ports free!
03:26:51 AM  [mysql]    You need to uninstall/disable/reconfigure the blocking application
03:26:51 AM  [mysql]    or reconfigure MySQL and the Control Panel to listen on a different port

Estou tendo algumas dificuldades para desativar o mySQL temporariamente para usar o XAMPP / Apache. Existe alguma maneira de alterar as portas para que elas possam coexistir?

EDIT 2:

Tentei seguir as instruções aqui:http://silentlyrun.blogspot.com.au/2013/02/how-to-change-apache-n-mysql-port-for.html

Eu encontro essas mensagens de erro depois de:

09:13:22 AM  [main]     Initializing Modules
09:13:22 AM  [Apache]   Problem detected!
09:13:22 AM  [Apache]   Port 80 in use by "Unable to open process" with PID 4084!
09:13:22 AM  [Apache]   Apache WILL NOT start without the configured ports free!
09:13:22 AM  [Apache]   You need to uninstall/disable/reconfigure the blocking application
09:13:22 AM  [Apache]   or reconfigure Apache and the Control Panel to listen on a different port
09:13:22 AM  [Apache]   Problem detected!
09:13:22 AM  [Apache]   Port 443 in use by "Unable to open process" with PID 4084!
09:13:22 AM  [Apache]   Apache WILL NOT start without the configured ports free!
09:13:22 AM  [Apache]   You need to uninstall/disable/reconfigure the blocking application
09:13:22 AM  [Apache]   or reconfigure Apache and the Control Panel to listen on a different port

Com estas instruções, a nova porta deve ser a mesma? Suponho que sim, porque ambos são originalmente 80.

4. Search the string "Listen" in the file.
5. Replace port number 80 to any other unused port number.
6. Search for "ServerName" in the file.
7. Replace port number 80 to any other unused port number in the ServerName.

EDIT 3:

Por um motivo desconhecido para mim, o XAMPP / MySQL funciona sem problemas após uma reinstalação e alteração de porta no link silentlyrun.blogspot acima. No entanto, o XAMPP / Apache ainda está apresentando problemas:

09:32:14 AM  [Apache]   Error: Apache shutdown unexpectedly.
09:32:14 AM  [Apache]   This may be due to a blocked port, missing dependencies, 
09:32:14 AM  [Apache]   improper privileges, a crash, or a shutdown by another method.
09:32:14 AM  [Apache]   Press the Logs button to view error logs and check
09:32:14 AM  [Apache]   the Windows Event Viewer for more clues
09:32:14 AM  [Apache]   If you need more help, copy and post this
09:32:14 AM  [Apache]   entire log window on the forums

questionAnswers(3)

yourAnswerToTheQuestion