12
9

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.

ある日composer installが爆遅くなった

Posted at

ある日突然composer installがすごく遅くなった

$ composer install
Loading composer repositories with package information
Updating dependencies (including require-dev)

// ここでフリーズ

  • dockerコンテナ内でも外でもフリーズしている
  • composer install -vvv → ゆっくり動いている(ほっとくと1時間くらいで完了することも)
  • composer require XX → 入る(遅い気がする)

試したこと

  • composer diagnose → 問題無し
  • mac側のcomposerアンインストールしいて入れ直す→だめだった
    • docker内でも起こっていたので関係ない

調べて得られた情報

  • メインサーバーでネットワークの問題があるかもしれない
  • ↑が原因で必要なJSONをダウンロード出来なくなっている
  • composer clear-cacheでキャッシュを削除すればいい
    • これを実行しても私の場合はダメでした

効いた対応

composerが参照するリポジトリを以下のミラーサイトに変更。

以下を実行した

composer config -g repos.packagist composer https://packagist.jp
12
9
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
12
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?