Answer the question
In order to leave comments, you need to log in
How to login as root in phpmyadmin?
How to login as root in phpmyadmin?
That's what gives out
Tell me what else you need from the information I'll write.
Everything is installed on a separate server, debian 9.2, php7, mysql-server, apache2, phpmyadmin. Everything is fresh.
Answer the question
In order to leave comments, you need to log in
By default, root login is disabled. I advise you to create a separate user for your needs:
(enter one line at a time)
sudo mysql -u root -p (спросит пароль)
create user 'пользователь'@localhost identified by 'пароль';
grant all privileges on *.* to 'пользователь'@localhost;
grant grant option on *.* to 'пользователь'@localhost;
flush privileges;
quit;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question