前提・実現したいこと
Laravelのmigrationファイルをmysqlにmigrate出来る様にしたいです。
発生している問題・エラーメッセージ
php artisan migrate Illuminate\Database\QueryException : SQLSTATE[HY000] [1045] Access denied for user 'dbuser'@'localhost' (using password: YES) (SQL: select * from information_schema.tables where table_schema = link and table_name = migrations and table_type = 'BASE TABLE') at /home/ubuntu/environment/link/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::("SQLSTATE[HY000] [1045] Access denied for user 'dbuser'@'localhost' (using password: YES)") /home/ubuntu/environment/link/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:70 2 PDO::__construct("mysql:host=127.0.0.1;port=3306;dbname=link", "dbuser", "dbpass", []) /home/ubuntu/environment/link/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:70 Please use the argument -v to see more details.
該当のソースコード
データベースの接続はできています。 ubuntu:~/environment/link $ php artisan tinker Psy Shell v0.10.4 (PHP 7.3.24-3+ubuntu18.04.1+deb.sury.org+1 — cli) by Justin Hileman >>> DB::connection(); => Illuminate\Database\MySqlConnection {#3194}
試したこと
ネットで調べ.envやconfig/databaseのDB_DATABASE,DB_USERNAME,DB_PASSWORDをいじったのですがエラーのままです。
補足情報(FW/ツールのバージョンなど)
cloud 9
laravel 6.0
php 7.3
あなたの回答
tips
プレビュー