Answers for "mysql user password xampp"

SQL
2

set mysql password xampp

SET PASSWORD FOR 'root'@'localhost' = PASSWORD('pass');
FLUSH PRIVILEGES;
Posted by: Guest on March-05-2021
0

xampp mysql username and password

You want to edit this file: "xamppphpMyAdminconfig.inc.php"

change this line:

$cfg['Servers'][$i]['password'] = 'WhateverPassword';
to whatever your password is. If you don't remember your password, then run this command within the Shell:

mysqladmin.exe -u root password WhateverPassword
where WhateverPassword is your new password.
Posted by: Guest on March-19-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language