Answers for "Access denied for user 'root'@'localhost' laravel"

2

Got error: 1698: Access denied for user 'root'@'localhost' when trying to connect

$ sudo mysql -u root # I had to use "sudo" since is new installation

mysql> USE mysql;
mysql> UPDATE user SET plugin='mysql_native_password' WHERE User='root';
mysql> FLUSH PRIVILEGES;
mysql> exit;

$ service mysql restart
Posted by: Guest on August-18-2020

Code answers related to "Access denied for user 'root'@'localhost' laravel"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language