Last active
November 11, 2022 20:04
-
-
Save filiperdt/d8c8ab6f2a20362c990d9f675228a8e0 to your computer and use it in GitHub Desktop.
Xampp não inicia o MySQL 'Attempting to start MySQL service'
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<>>> Xampp não inicia o MySQL 'Attempting to start MySQL service'. | |
Executar dois serviços MySQL ao mesmo tempo (com nome e porta diferentes): | |
Edite seu arquivo “my.ini” em c:\xampp\mysql\bin\ Altere todas as entradas de porta 3306 para 3308. | |
Edite seu “php.ini” em c:\xampp\php e substitua 3306 por 3308. | |
Crie a entrada de serviço no CMD do Windows: | |
sc.exe create "mysqlweb" binPath= "C:\xampp\mysql\bin\mysqld.exe --defaults-file=c:\xampp\mysql\bin\my.ini mysqlweb" | |
Abra os serviços do Windows e defina o tipo de inicialização como 'Automático'. | |
Inicie o serviço. | |
____________________ | |
https://stackoverflow.com/questions/15718157/apache-mysql-service-detected-with-wrong-path-ports-already-in-use | |
____________________ | |
Excluir serviço: | |
sc delete nome_do_serviço | |
____________________ | |
Instalar MySQL como um serviço: | |
Navegue até a pasta bin do seu MySQL, no CMD: | |
Ex: | |
cd C:\Program Files\MySQL\MySQL Server 5.5\bin | |
Execute: | |
mysqld --install | |
Se o serviço for instalado com sucesso aparecerá: | |
Service successfully installed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment