mysql 默认不用密码登录,改成账号密码登录
2020-04-01 05:49:39    35    0    0
jeiry
use mysql;
# 所有用户可登录的username用户登录
create user 'username'@'%' identified by 'userpasswd';
update user set authentication_string=PASSWORD(“密码”) where user="username";
update user set plugin="mysql_native_password" where user="username" ;
flush privileges;
quit;
/etc/init.d/mysql restart;


Pre: 如何用adb发起toast

Next: unas 蜂鸣器 不要响

35
Table of content