Cambiar el Password del root en MySQL


UPDATE mysql.user SET Password=PASSWORD(‘root’)
WHERE User=‘root’ AND Host=‘localhost’;
FLUSH PRIVILEGES;