1. ホーム
  2. mongodb

[解決済み] HomebrewでMongoDBをインストールする

2022-02-11 01:38:03

質問

私はMongoDBの比較的新しいユーザーで、Homebrewを使ってMacにMongoDBをインストールしようとしているのですが、以下のエラーが発生します。

Error: No available formula with the name "mongodb" 
==> Searching for a previously deleted formula (in the last 
month)...
Warning: homebrew/core is shallow clone. To get complete history 
run:
  git -C "$(brew --repo homebrew/core)" fetch --unshallow

Error: No previously deleted formula found.
==> Searching for similarly named formulae...
Error: No similarly named formulae found.
==> Searching taps...
==> Searching taps on GitHub...
Error: No formulae found in taps.

を実行しました。 brew update 次に brew install mongodb

解決方法は?

計算式 mongodb は homebrew-core から削除されました。チェック pr-43770 homebrew-core より

<ブロッククオート

ユーザーの皆様へ:もしあなたがmongodbが動かなくなったのでここに来たのなら、Homebrewコアの数式は 非オープンソースライセンス .

幸いなことに、mongodbのチームはカスタムHomebrewタップをメンテナンスしています。古いmongodbをアンインストールして、新しいタップから新しいものを再インストールすればいいのです。

# If you still have the old mongodb installed from homebrew-core
brew services stop mongodb
brew uninstall homebrew/core/mongodb

# Use the migrated distribution from custom tap
brew tap mongodb/brew
brew install mongodb-community
brew services start mongodb-community

チェック mongodb/homebrew-brew をご覧ください。