2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Apache環境でLaravelの環境構築の時に重要だったコマンド(備忘録)

Posted at

Apach環境下でLaravelのAPI認証回りの設定を行った

・Passportのインストール

Console
conposer require laravel/passport

・PassportをLaravelに登録する

Console
'providers' => [
                  :
        Laravel\Passport\PassportServiceProvider::class,
    ],

・キーの生成とレコード挿入

Console
php artisan passport:install

・全部のデータベースマイグレーションを最初にロールバックし、それからmigrateコマンドを実行

Console
php artisan migration:reflesh

・シードの実行

Console
php artisan db:seed

・「Personal Access Client」の生成

Console
php artisan passport:client --personal

->クライアント名を入力

よく訪れたディレクトリ

・このディレクトリの所有者権限をLaravelアプリの所有者に変更しないと、「Service Unavailable」エラーに陥ってた

Console
$ ls -l /run/php-fpm/www.sock #権限の確認
$ chown www:www /run/php-fpm/www.sock  #権限の変更

・Laravel環境のエラーログを見たい!ここで代替エラーの原因がわかる(かも)

Console
#アプリのRootディレクトリにて
$ vi storage/logs/laravel

・ここでよくApache環境のエラーを確認した

Console
$ cd /
$ vi /var/log/httpd/error_log

参考サイト

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?