Como faço para redefinir a senha do MySQL no Windows?

2

Ao tentar reiniciar minha senha do MySQL, recebo a seguinte saída no console (essa também é a entrada que causou a saída):

C:>"C:\MySQL\bin\mysqld" --console --init-file=C:\mysql--init.txt

111008 23:42:48 [Note] Plugin 'FEDERATED' is disabled.
111008 23:42:48 InnoDB: The InnoDB memory heap is disabled
111008 23:42:48 InnoDB: Mutexes and rw_locks use Windows interlocked functions
111008 23:42:48 InnoDB: Compressed tables use zlib 1.2.3
111008 23:42:48 InnoDB: Initializing buffer pool, size = 45.0M
111008 23:42:48 InnoDB: Completed initialization of buffer pool
InnoDB: Error: log file .\ib_logfile0 is of different size 0 5242880 bytes
InnoDB: than specified in the .cnf file 0 24117248 bytes!
111008 23:42:48 [ERROR] Plugin 'InnoDB' init function returned error.
111008 23:42:48 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.

111008 23:42:48 [ERROR] Unknown/unsupported storage engine: INNODB 
111008 23:42:48 [ERROR] Aborting

111008 23:42:48 [Note] C:\MySQL\bin\mysqld: Shutdown complete
    
por Dynamic 03.10.2011 / 20:56

4 respostas

2

Se você seguiu a etapa do manual , será necessário execute o comando:

C:\> C:\mysql\bin\mysqld --init-file=C:\mysql-init.txt

Que automaticamente irá redefinir a senha (porque você escreveu o arquivo com o comando para fazer isso (passo 3)).

Se este comando não funcionar, apenas execute o outro comando:

C:\> "C:\Program Files\MySQL\MySQL Server 5.5\bin\mysqld.exe"
        --defaults-file="C:\Program Files\MySQL\MySQL Server 5.5\my.ini"
        --init-file=C:\mysql-init.txt
    
por 03.10.2011 / 21:47
1

Manual diz:

C.5.4.1.1. Resetting the Root Password: Windows Systems On Windows, use the following procedure to reset the password for all MySQL root accounts:

  1. Log on to your system as Administrator.
  2. Stop the MySQL server if it is running. For a server that is running as a Windows service, go to the Services manager: From the Start menu, select Control Panel, then Administrative Tools, then Services. Find the MySQL service in the list and stop it. If your server is not running as a service, you may need to use the Task Manager to force it to stop.
  3. Create a text file containing the following statements. Replace the password with the password that you want to use.

    UPDATE mysql.user SET Password=PASSWORD('MyNewPass') WHERE User='root'; FLUSH PRIVILEGES;
    

    Write the UPDATE and FLUSH statements each on a single line. The UPDATE statement resets the password for all root accounts, and the FLUSH statement tells the server to reload the grant tables into memory so that it notices the password change.

  4. Save the file. For this example, the file will be named C:\mysql-init.txt.
  5. Open a console window to get to the command prompt: From the Start menu, select Run, then enter cmd as the command to be run.
  6. Start the MySQL server with the special --init-file option (notice that the backslash in the option value is doubled):

    C:\> C:\mysql\bin\mysqld-nt --init-file=C:\mysql-init.txt 
    

    If you installed MySQL to a location other than C:\mysql, adjust the command accordingly. The server executes the contents of the file named by the --init-file option at startup, changing each root account password. You can also add the --console option to the command if you want server output to appear in the console window rather than in a log file. If you installed MySQL using the MySQL Installation Wizard, you may need to specify a --defaults-file option:

    C:\> "C:\Program Files\MySQL\MySQL Server 5.0\bin\mysqld-nt.exe" --defaults-file="C:\Program Files\MySQL\MySQL Server 5.0\my.ini" --init-file=C:\mysql-init.txt 
    

The appropriate --defaults-file setting can be found using the Services Manager: From the Start menu, select Control Panel, then Administrative Tools, then Services. Find the MySQL service in the list, right-click it, and choose the Properties option. The Path to executable field contains the --defaults-file setting. 7. After the server has started successfully, delete C:\mysql-init.txt.

Então, primeiro você tem que criar o arquivo como indicado no ponto 3 e, em seguida, usando uma linha de comando (Iniciar-> Executar-> CMD (ENTER), execute mysqld-nt.exe com --init-file param apontando para isso Lembre-se de usar o caminho completo para o mysqld-nt.exe e seu arquivo criado.

    
por 03.10.2011 / 21:49
1

No seu caso, antes mesmo de redefinir a senha, você precisa corrigir o problema de inicialização.

Observe o primeiro erro listado no log de erros do MySQL:

InnoDB: Error: log file .\ib_logfile0 is of different size 0 5242880 bytes
InnoDB: than specified in the .cnf file 0 24117248 bytes!

Isso significa que você pode ter copiado seus arquivos de banco de dados de outro local ou ter editado as configurações my.cnf e elas não correspondem mais ao tamanho real do arquivo ib_logfile0. Concentre-se primeiro nesta questão.

    
por 19.10.2011 / 03:53
1

Eu respondi uma pergunta assim no DBA StackExchange de volta em 26 de setembro de 2011 .

Essa pessoa aceitou minha resposta.

É como um hack do my.ini e deve funcionar para você.

ATUALIZAÇÃO 2011-10-19 07:12 EDT

Tudo o que você precisa fazer é excluir ib_logfile0 e ib_logifle1, e o mysqld fará com que o InnoDB gere novamente os dois arquivos de log innodb.

Eu gostaria de ter visto o log de erros anteriormente. Todo esse tempo eu continuo ajudando você a resolver os problemas de doações.

    
por 05.10.2011 / 19:42