mysql - No Privileges error with phpMyAdmin when I click Users -
mysql - No Privileges error with phpMyAdmin when I click Users -
i tried set root password phpmyadmin , phpmyadmin->users shows error "no privileges"
backgroundjust installed mysql (with xampp) - , tried alter "root" password via phpmyadmin->users->root->password.
now phpmyadmin->users shows error "no privileges"
how things back, , remove error.
also - maybe nothing, when first tried alter password, pressed "wong" go button, 1 @ end, , created "root" user. deleted user.
my config.inc.php file has:
$cfg['servers'][$i]['user'] = 'root'; $cfg['servers'][$i]['password'] = '';
if logged in root user , changed root user password, need tell phpmyadmin new password, otherwise won't logged in , "no privileges" errors :-)
with phpmyadmin, there several authentication methods ("auth_types") can used. they're configured in configuration file, config.inc.php, line $cfg['servers'][$i]['auth_type'] = 'cookie';. possible choices "config" username , password hard coded in configuration file, , "cookie" or "http" user prompted username , password on login. don't know how xampp it, since have $cfg['servers'][$i]['user'] = 'root'; , $cfg['servers'][$i]['password'] = ''; lines auth_type config (those lines meaningless other types).
so in case, plug new password in password field instead of having blank posted above.
it's possible deleted wrong root user. there @ to the lowest degree 2 on mysql installation different host fields; they're used in different connection scenarios (whether you're connecting via socket or tcp connection, instance, or machine on network). if happen have deleted wrong one, may have refer mysql manual instructions reset lost password , recreate user you're missing.
mysql phpmyadmin xampp
Comments
Post a Comment