Answers for "how to fix mysql root password lost in xampp"

SQL
0

mysql xampp reset root password

/* Go to the phpMyAdmin panel and select the SQL tab.
** Then run this lines:
*/
UPDATE mysql.user SET Password=PASSWORD('new_password') WHERE User='root';
FLUSH PRIVILEGES;

/* Open the file C:xamppphpMyAdminconfig.inc.php
** Search for this line and set the new password.
*/
$cfg['Servers'][$i]['password'] = 'new_password'
Posted by: Guest on May-24-2021
0

set root password mysql xampp

mysqladmin -u root password
Posted by: Guest on June-06-2021

Code answers related to "how to fix mysql root password lost in xampp"

Code answers related to "SQL"

Browse Popular Code Answers by Language