#問題点
こちらの記事を参考にlaradock環境構築を行いましたが
MySQLの接続設定
1.Laravelプロジェクトの.envを修正 接頭辞が DB_ の部分を編集し、laradockフォルダ/.envに記述されている値に合わせる形になります。
のところで同じように記述したと思うのですがマイグレーションを行った際にエラーが出てしまいます。
どのようにしたら良いのでしょうか?
どなたかご教示頂きたいです。
hdk:laradock yokonohidekazu$ docker-compose ps Name Command State Ports -------------------------------------------------------------- laraveltutorial_ dockerd- Up 2375/tcp, docker-in- entrypoint.sh 2376/tcp docker_1 laraveltutorial_ docker- Up 0.0.0.0:3306->33 mysql_1 entrypoint.sh 06/tcp, mysqld 33060/tcp laraveltutorial_ /bin/bash Up 0.0.0.0:443->443 nginx_1 /opt/startup.sh /tcp, 0.0.0.0:80 ->80/tcp laraveltutorial_ docker-php- Up 9000/tcp php-fpm_1 entrypoint php- fpm laraveltutorial_ /sbin/my_init Up 0.0.0.0:2222->22 workspace_1 /tcp hdk:laradock yokonohidekazu$ docker-compose exec workspace bash root@65fbec0ee722:/var/www# 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 = default and table_name = migrations and table_type = 'BASE TABLE') at /var/www/vendor/laravel/framework/src/Illuminate/Database/Connection.php:669 665| // If an exception occurs when attempting to run a query, we'll format the error 666| // message to include the bindings with SQL, which will make this exception a 667| // lot more helpful to the developer instead of just the database's errors. 668| catch (Exception $e) { > 669| throw new QueryException( 670| $query, $this->prepareBindings($bindings), $e 671| ); 672| } 673| Exception trace: 1 PDOException::("PDO::__construct(): The server requested authentication method unknown to the client [caching_sha2_password]") /var/www/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:70 2 PDO::__construct("mysql:host=mysql;port=3306;dbname=default", "default", "secret", []) /var/www/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:70 Please use the argument -v to see more details.
回答1件
あなたの回答
tips
プレビュー