Access denied on phpmyadmin on ubuntu 18.04

0

I installed XAMPP for ubuntu 18.04, when I start XAMPP with the command sudo ./lampp start I get the following outputs in the terminal.

Starting XAMPP for Linux 7.2.9-0...
XAMPP: Starting Apache.../opt/lampp/share/xampp/xampplib: line 22: netstat: command not found
/opt/lampp/share/xampp/xampplib: line 22: netstat: command not found
ok.
XAMPP: Starting MySQL.../opt/lampp/share/xampp/xampplib: line 22: netstat: command not found
ok.
XAMPP: Starting ProFTPD.../opt/lampp/share/xampp/xampplib: line 22: netstat: command not found
ok.

To start both the Apache server and MySQL. When I enter localhost , there are no problems. However, when entering localhost/phpmyadmin , I get the following image.

    
asked by MeEncantanLosPerritos 16.10.2018 в 19:13
source

1 answer

0

The problem was that I had mysql-server running, because the solution was

sudo service mysql stop

and then run sudo ./lampp restart

Thanks for the help.

    
answered by 16.10.2018 / 22:21
source