• 周六. 10 月 12th, 2024

5G编程聚合网

5G时代下一个聚合的编程学习网

热门标签

mysql8.0配置

King Wang

1 月 3, 2022
大咖揭秘Java人都栽在了哪?点击免费领取《大厂面试清单》,攻克面试难关~>>>
# 安装mysql 8.0
# 创建用户和授权
$ create user 'xxx'@'%' identified by '123456';
$ grant all privileges on *.* to 'kevin'@'%' with grant option;
$ flush privileges;
# Mysql8.0默认是不能使用root账号进行远程登录
# update更新下root账号的权限
$ update mysql.user set host='%' where user="root";
# mysql8 之前的版本中加密规则是mysql_native_password, 而在mysql8之后,加密规则是caching_sha2_password

发表回复