mysql 管理
```
服务管理:
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';
phpmyadmin 登陆 root 需要设置 plugin='mysql_native_password'
```
```
服务管理:
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';
phpmyadmin 登陆 root 需要设置 plugin='mysql_native_password'
```