web-dev-qa-db-ja.com

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

MongoDB によってガイドされるmongodbv3.4をインストールしようとしています。
最初に「/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
Brian SP2

これは手遅れかもしれませんが、同じ問題が発生した後、 AWS Linuxでyumを介してMongoDBをインストールすると失敗します:HTTPSエラー404-見つかりません (スタックオーバーフローで)のいずれかとの組み合わせに従いました CentOSにMongoDBをインストールする際のYumエラー? (選択されたものではありません)への応答なので、私の手順は次のとおりです。

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

再びリポジトリファイルを作成する

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
6
Chris

Mongodb-repoはCentOS7では機能しませんでした。baseurlが存在しないようです。使った

dnf install mongodb-server
dnf install mongodb

これは私のマシンにバージョン3.4をインストールしました。 dnfを介してプロビジョニングされるため、今後の更新を自動的に取得する必要があります。

0
user256866

しかし、v3.4ではなく、古いバージョンのmongoDBをインストールする方法を見つけました。

この情報を「/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のインストールに関するヘルプはありますか?

0
Brian SP2