Установил сервер и, в том числе, phpMyAdmin. При попытке авторизоваться выдаёт ошибку:
#1045 - Access denied for user 'root'@'localhost' (using password: YES) и ниже
mysqli_real_connect(): (HY000/1045): Access denied for user 'root'@'localhost' (using password: YES)
Файл конфигурации создавал через setup в PMA:
<?php
/*
* Generated configuration file
* Generated by: phpMyAdmin 4.7.7 setup script
* Date: Tue, 13 Feb 2018 10:18:58 +0000
*/
/* Servers configuration */
$i = 0;
/* Server: localhost [1] */
$i++;
$cfg['Servers'][$i]['verbose'] = '';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '12345';
/* End of servers configuration */
$cfg['blowfish_secret'] = 'ojG(]H&/L\'-!pbvtq.~EjdcKc*<xLAL1';
$cfg['DefaultLang'] = 'en';
$cfg['ServerDefault'] = 1;
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
?>