I read a stack article that said to run the following, to be able to connect to MySQL root from remote HeidiSQL client:
update user set plugin="mysql_native_password" where User='root';
I think I misinterpreted it and ran:
update user set plugin='my_actual_mysql_root_password' where User='root';
I'm thinking I was supposed to take "mysql_native_password"
LITERALLY!??
Because after running my update, it executed, and now I can no longer connect to MySQL via terminal inside WHM. When I run the following inside terminal (which used to work)...
sudo -i mysql
It won't connect to MySQL, and I get this error:
Plugin 'my_actual_mysql_root_password' is not loaded.
The fact that the error message spits back my ACTUAL ROOT MYSQL PASSWORD tells me I've done something wrong. I can no longer access MySQL from command line.