CentOS 7 - yumはmongodbをインストールしません

CentOS 7 - yumはmongodbをインストールしません

mongodb v3.4をインストールしようとしています。モンゴルDB
まず、「/etc/yum.repo.d/mongodb.repo」を作成してから、このリポジトリ情報をファイルに貼り付けます。

[mongodb-org-3.4]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.4/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-3.4.asc

mongodb-orgをインストールしようとしましたが、yumで次のエラーが発生しました。

Loaded plugins: fastestmirror
base

| 3.6 kB  00:00:00     
extras
| 3.4 kB  00:00:00     
https://repo.mongodb.org/yum/redhat/7/mongodb-org/3.4/x86_64/repodata/repomd.xml: [Errno 14] HTTPS Error 403 - Forbidden
Trying other mirror.
To address this issue please refer to the below knowledge base article

https://access.redhat.com/solutions/69319

If above article doesn't help to resolve this issue please create a bug on https://bugs.centos.org/



 One of the configured repositories failed (MongoDB Repository),
 and yum doesn't have enough cached data to continue. At this point the only
 safe thing yum can do is fail. There are a few ways to work "fix" this:

 1. Contact the upstream for the repository and get them to fix the problem.

 2. Reconfigure the baseurl/etc. for the repository, to point to a working
    upstream. This is most often useful if you are using a newer
    distribution release than is supported by the repository (and the
    packages for the previous distribution release still work).

 3. Run the command with the repository temporarily disabled
        yum --disablerepo=mongodb-org-3.4 ...

 4. Disable the repository permanently, so yum won't use it by default. Yum
    will then just ignore the repository until you permanently enable it
    again or use --enablerepo for temporary usage:

        yum-config-manager --disable mongodb-org-3.4
    or
        subscription-manager repos --disable=mongodb-org-3.4

 5. Configure the failing repository to be skipped, if it is unavailable.
    Note that yum will try to contact the repo. when it runs most commands,
    so will have to try and fail each time (and thus. yum will be be much
    slower). If it is a very temporary problem though, this is often a nice
    compromise:

        yum-config-manager --save --setopt=mongodb-org-3.4.skip_if_unavailable=true

failure: repodata/repomd.xml from mongodb-org-3.4: [Errno 256] No more mirrors to try.
https://repo.mongodb.org/yum/redhat/7/mongodb-org/3.4/x86_64/repodata/repomd.xml: [Errno 14] HTTPS Error 403 - Forbidden

このエラーはSELinuxの制限によるものですか? yumにmongodbのインストールを許可するにはどうすればよいですか?

答え1

遅すぎるかもしれませんが、同じ問題に直面した後、次の組み合わせに従いました。AWS Linuxでyumを介してMongoDBをインストールできない:HTTPSエラー404 - 見つかりません応答の1つ(スタックオーバーフロー)CentOSにMongoDBをインストールするとYumエラーが発生しますか?(選択されていません)したがって、私のステップは次のようになります。

sudo rm -rf /etc/yum.repos.d/mongod*
sudo yum clean all

repoファイルを再生成してください。

sudo vi /etc/yum.repos.d/mongodb-org-3.4.repo

以下を貼り付けます(私のシステムでは '$ releasever'を7に置き換えました)。

[mongodb-org-3.4]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/7/mongodb-org/3.4/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-3.4.asc

それからこれを実行して動作しました。

sudo yum install -y mongodb-org

答え2

次のような将来の更新を防ぐexcludeためにディレクトリを追加しようとしているようです。/etc/yum.conf

exclude=mongodb-org,mongodb-org-server,mongodb-org-shell,mongodb-org-mongos,mongodb-org-tools

ただし、install mongodb-orgを実行した後に上記の行を追加する必要があります。

sudo yum install -y mongodb-org

答え3

以前のバージョンのmongoDBをインストールする方法を見つけましたが、v3.4はインストールしませんでした。

この情報を「/etc/yum.repo.d/mongodb.repo」に記入してください。

[mongodb]
name=MongoDB Repository
baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64/
gpgcheck=0
enabled=1

その後、yumは次のコマンドを使用してmongodb-org-2.6.12のインストールを開始します。

sudo yum install mongodb-org

繰り返しますが、私のアプリケーションは機能しますが、最新バージョンのmongoDBが必要な場合があります。
v3.4のインストールは役に立ちましたか?

答え4

mongodb-repoはCentOS 7では動作しません。 baseurlが存在しないようです。使った

dnf install mongodb-server
dnf install mongodb

マイコンピュータにバージョン3.4がインストールされました。で構成されているため、今後のdnf更新を自動的に受け取る必要があります。

関連情報