Answers for "mysqli::real_connect(): (HY000/1698): Access denied for user 'root'@'localhost'"

SQL
1

IlluminateDatabaseQueryException : SQLSTATE[HY000] [1698] Access denied for user 'root'@'localhost'

$ sudo mysql -u root -p
Now you can add a new MySQL user with the username of your choice.

mysql> CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
And finally grant superuser privileges to the user you just created.

mysql> GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';

after that go and edit .env DB_USERNAME=newuser
DB_PASSWORD=password
Posted by: Guest on December-18-2020
1

mysqli_real_connect(): (HY000/1698): Access denied for user 'root'@'localhost'

ALTER USER 'root'@'localhost' IDENTIFIED BY 'mysql';
Posted by: Guest on January-03-2021

Code answers related to "mysqli::real_connect(): (HY000/1698): Access denied for user 'root'@'localhost'"

Code answers related to "SQL"

Browse Popular Code Answers by Language