前提・実現したいこと
laravelを使用した、マイグレートをしたい。
現在、勉強するために簡易的な書籍管理アプリを作成しようとしているのですが、AWSのcloud9でマイグレートをしようとすると、エラーが出てしまい、こけてしまっている状態です。
■■な機能を実装中に以下のエラーメッセージが発生しました。
データのマイグレートをしようとしているとき
発生している問題・エラーメッセージ
ドライバーがない?みたいなエラー文が出てしまい、マイグレートが実行されてないです。
エラーメッセージ
ec2-user:~/environment/cms $ php artisan migrate
Illuminate\Database\QueryException
could not find driver (SQL: select * from information_schema.tables where table_schema = c9 and table_name = migrations and table_type = 'BASE TABLE')
at 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|
35 artisan:37
Illuminate\Foundation\Console\Kernel::handle(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
ec2-user:/environment/cms $ php -vPHP 7.2.28 (cli) (built: Mar 3 2020 18:09:18) ( NTS )/environment/cms $ sudo apt-get install php7.2-mysql
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
with Zend OPcache v7.2.28, Copyright (c) 1999-2018, by Zend Technologies
with Xdebug v2.6.1, Copyright (c) 2002-2018, by Derick Rethansec2-user:
sudo: apt-get: command not found
ec2-user:~/environment/cms $ php artisan migrate
Illuminate\Database\QueryException
could not find driver (SQL: select * from information_schema.tables where table_schema = c9 and table_name = migrations and table_type = 'BASE TABLE')
at 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| +34 vendor frames
35 artisan:37
Illuminate\Foundation\Console\Kernel::handle(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
該当のソースコード
php artisan migrate
試したこと
sudo apt-get install php7.1-mysql
※こちらのコマンドを試しましたが、sudo: apt-get: command not foundと出てしまい、どうにもドライバーのインストールが実行できません。
補足情報(FW/ツールのバージョンなど)
php 7.2
laravel 7.2
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。