Reset mysql root password

 

Reset mysql root password


Resettare la Passrowd root di mysql da linea di comando Linux:
 
/etc/init.d/mysqld stop


mysqld_safe --skip-grant-tables &


mysql -u root


mysql> use mysql;
mysql> update user set password=PASSWORD("NEW-ROOT-PASSWORD") where User='root';
mysql> flush privileges;
mysql> quit


/etc/init.d/mysqld stop


/etc/init.d/mysqld start


mysql -u root -p