Answers for "change authentication plugin from auth_sock to mysql_native_password for a specific user"

SQL
0

change authentication plugin from auth_sock to mysql_native_password for a specific user

mysql> UPDATE mysql.user SET plugin = 'mysql_native_password', authentication_string = PASSWORD('changeme') WHERE User = 'root';

mysql> FLUSH PRIVILEGES;
Posted by: Guest on March-28-2022

Code answers related to "change authentication plugin from auth_sock to mysql_native_password for a specific user"

Code answers related to "SQL"

Browse Popular Code Answers by Language