Mysql版本大于等于5.6的话,直接在
命令行中输入密码时会
提示不安全。提示如下:Warning: Using a password on the command line interface can be insecure 1:在mysql的配置文件/etc/mysql/my.cnf中加入以下配置[client] host=mysql_host user=mysql_user password=mysql_password 注:mysql_host, mysql_user 以及 mysql_password需要替换成自己的mysql的host, user和password2:重启mysql服务service mysql restart: 就可以了。 命令行中执行mysql *** 作时就不用带用户名和密码了。3:举例进入到mysql交互式命令行中。直接输入 mysql,然后回车即可。如下图所示。MySQL8.0登录提示caching_sha2_password问题
解决方法
用dock构建mysql8后,phpmyadmin登陆遇到问题:
caching_sha2_password
b. 通过dock 构建mysql8
c.登陆mysql容器查看是否成功:
root 的用户身份已经变为mysql_native_password
可看见root的plugin为caching_sha2_password
b.修改caching_sha2_password
c.查看是否修改成功
可看见root的plugin为caching_sha2_password
问题解决!
评论列表(0条)