Answers for "mysql xampp reset root password"

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:\xampp\phpMyAdmin\config.inc.php
** Search for this line and set the new password.
*/
$cfg\['Servers'\]\[$i\]['password'] = 'new_password'
Posted by: Guest on May-24-2021

Code answers related to "mysql xampp reset root password"

Code answers related to "SQL"

Browse Popular Code Answers by Language