Answers for "ansible Access denied for user 'root'@'localhost' (using password: NO) + mysql_user"

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 "ansible Access denied for user 'root'@'localhost' (using password: NO) + mysql_user"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language