Я использую Ubuntu 18.04 LTS и XAMPP.Со вчерашнего дня XAMPP работал нормально, но когда я запускаю XAMPP и пытаюсь зайти на phpMyAdmin, но получаю сообщение об ошибке вроде скриншота, а также проверяю здесь ...
MySQL said: Documentation
Cannot connect: invalid settings.
mysqli_real_connect(): (HY000/2002): Connection refused
Connection for controluser as defined in your configuration failed.
mysqli_real_connect(): (HY000/2002): Connection refused
phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username, and password in your configuration and make sure that they correspond to the information given by the administrator of the MySQL server.
Я проверил на StackOverflow возможное решение инашел некоторые решения, где нам нужно внести изменения в config.inc.php, но этот файл уже содержит правильную информацию (я так думаю), проверьте код здесь ...
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
/* Server parameters */
//$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = true;
Как я могу использовать этовыпуск ??
Заранее спасибо.