- Stop the mysqld server. Typically this can be done by from 'System Prefrences' > MySQL > 'Stop MySQL Server'
- Start the server in safe mode with privilege bypassFrom a terminal:sudo /usr/local/mysql/bin/mysqld_safe --skip-grant-tables
- In a new terminal window:sudo /usr/local/mysql/bin/mysql -u rootUPDATE mysql.user SET authentication_string=PASSWORD('NewPassword') WHERE User='root';FLUSH PRIVILEGES;\q
- Stop the mysqld server again and restart it in normal mode.
****************************************************************************************
- Detener mysql. Esto lo podemos realizar desde 'System Prefrences' > MySQL > 'Stop MySQL Server'
- Iniciar MySQL en modo seguroAbrir una ventana de terminal y ejecutar el siguiente comando:sudo /usr/local/mysql/bin/mysqld_safe --skip-grant-tables
- Abrir una nueva ventana terminal y ejecutar los siguientes comandos:sudo /usr/local/mysql/bin/mysql -u rootUPDATE mysql.user SET authentication_string=PASSWORD('NewPassword') WHERE User='root';FLUSH PRIVILEGES;quit
- Detener mysql de nuevo y reiniciar en el modo normal.
No hay comentarios:
Publicar un comentario