Mysql 8.0 版本命令行方式修改密码 博文 吴川斌 2020年8月31日 0 4533 1 minute read Mysql 8.0 设置密码的方式有所变更,这里记录一下 将当前需要操作的数据库名切到’mysql’ USE mysql; 本机访问方式广告 ALTER USER 'username'@'localhost' identified by 'password'; 外网访问方式 ALTER USER 'username'@'%' identified by 'password'; 最后 FLUSH PRIVILEGES; 使生效 阅读: 697 wechat