Laravelでサイトを作ろうとしています。
MacのDesktopに「Laravel_app」というフォルダを作り,Laravelをインストールしてプロジェクト「imageApp」を作りました。
ビルドインサーバーを立ち上げLaravelのトップ画面が表示されました。
データベースを構築しようと、「php artisan make:migration create_articles_table」でできたファイル(2018_10_25_063930_create_articles_table.php)に、
PHP
1<?php 2 3use Illuminate\Support\Facades\Schema; 4use Illuminate\Database\Schema\Blueprint; 5use Illuminate\Database\Migrations\Migration; 6 7class CreateArticlesTable extends Migration 8{ 9 /** 10 * Run the migrations. 11 * 12 * @return void 13 */ 14 public function up() 15 { 16 Schema::create('articles', function (Blueprint $table) { 17 $table->increments('id'); 18 $table->string('title'); 19 $table->text('body'); 20 $table->timestamps(); 21 }); 22 } 23 24 /** 25 * Reverse the migrations. 26 * 27 * @return void 28 */ 29 public function down() 30 { 31 Schema::dropIfExists('articles'); 32 } 33} 34
とし、「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 = homestead and table_name = migrations) at /Users/kunshi/Desktop/Laravel_app/imageApp/vendor/laravel/framework/src/Illuminate/Database/Connection.php:664 660| // If an exception occurs when attempting to run a query, we'll format the error 661| // message to include the bindings with SQL, which will make this exception a 662| // lot more helpful to the developer instead of just the database's errors. 663| catch (Exception $e) { > 664| throw new QueryException( 665| $query, $this->prepareBindings($bindings), $e 666| ); 667| } 668| Exception trace: 1 PDOException::("PDO::__construct(): The server requested authentication method unknown to the client [caching_sha2_password]") /Users/kunshi/Desktop/Laravel_app/imageApp/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:70 2 PDO::__construct("mysql:host=127.0.0.1;port=3306;dbname=homestead", "homestead", "secret", []) /Users/kunshi/Desktop/Laravel_app/imageApp/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:70 Please use the argument -v to see more details.
と出ました。
色々調べましたが、よくわからず、アドバイスいただけると助かります!
追記
Mysqlのユーザーはrootです。
「SELECT user, host, plugin FROM mysql.user;」の実行結果は、
mysql> SELECT user, host, plugin FROM mysql.user; +------------------+-----------+-----------------------+ | user | host | plugin | +------------------+-----------+-----------------------+ | mysql.infoschema | localhost | caching_sha2_password | | mysql.session | localhost | caching_sha2_password | | mysql.sys | localhost | caching_sha2_password | | root | localhost | caching_sha2_password | +------------------+-----------+-----------------------+ 4 rows in set (0.00 sec)
でした。
config/database.phpは
mysql
1 2'mysql' => [ 3'driver' => 'mysql', 4'host' => env('DB_HOST', '127.0.0.1'), 5'port' => env('DB_PORT', '3306'), 6'database' => env('DB_DATABASE', 'forge'), 7'username' => env('DB_USERNAME', 'forge'), 8'password' => env('DB_PASSWORD', ''), 9'unix_socket' => env('DB_SOCKET', ''), 10'charset' => 'utf8mb4', 11'collation' => 'utf8mb4_unicode_ci', 12'prefix' => '', 13'strict' => true, 14'engine' => null, 15],
となっております。

回答1件
あなたの回答
tips
プレビュー