mysql - Access denied for user 'admin'@'localhost' (using password: YES) -


i have error when try log in in localhost/phpmyadmin:

 mysqli_real_connect(): (hy000/1045): access denied user 'admin'@'localhost' (using password: yes) 

this phpmyadmin/config.inc

$cfg['servers'][$i]['auth_type'] = 'cookie'; $cfg['servers'][$i]['user'] = 'admin'; $cfg['servers'][$i]['password'] = 'admin'; $cfg['servers'][$i]['extension'] = 'mysqli'; $cfg['servers'][$i]['allownopassword'] = true; $cfg['lang'] = '';  /* bind localhost ipv4 address , tcp */ $cfg['servers'][$i]['host'] = '127.0.0.1'; $cfg['servers'][$i]['connect_type'] = 'tcp';  /* user advanced features */ $cfg['servers'][$i]['controluser'] = 'pma'; $cfg['servers'][$i]['controlpass'] = ''; 

anyone can me?


Comments

Popular posts from this blog

php - Permission denied. Laravel linux server -

google bigquery - Delta between query execution time and Java query call to finish -

python - Pandas two dataframes multiplication? -