```
服务管理:
service mysql restart
service mysql start
service mysql stop
更改密码:
update mysql.user set authentication_string=PASSWORD(''), plugin='mysql_native_password' where user='root';
更改登陆方式:
update mysql.user set plugin='mysql_native_password' where user='root';