在centos7.5上安装了php7.3
,laravel5.7
,mysql8.0
,运行php artisan migrate
的时候,出现如下错误:
Illuminate\Database\QueryException : SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client (SQL: select * from information_schema.tables where table_schema = blog and table_name = migrations)
百度到的解决办法:
删除创建的用户和授权,变为原来的验证方式,然后从新创建用户并授权即可:找到mysql配置文件并加入:
default_authentication_plugin=mysql_native_password
或
mysql -uroot -p
use mysql;
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '你的密码';
问题:
百度到的解决方式是退到以前的验证方式,如果要使用新的验证方式该怎么办呢?
慕勒3428872
相关分类