web-dev-qa-db-ja.com

Yum MongoDBをCentOSにインストール中にエラーが発生しましたか?

Centos 6.6(x86_64)を使用しています。入手可能な最も安定したバージョンのmongodbをインストールしようとしています。しかし、私はこのエラーに悩まされています(これは繰り返されるように見えるかもしれませんが、以前の答えはどれもうまくいきませんでした)

[root@localhost home]# Sudo yum install -y mongodb-org
Loaded plugins: fastestmirror, refresh-packagekit, security
Setting up Install Process
Loading mirror speeds from cached hostfile
 * base: ftp.iitm.ac.in
 * extras: ftp.iitm.ac.in
 * updates: centos.01link.hk
http://repo.mongodb.org/yum/redhat/%24releaserver/mongodb-org/3.0/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: mongodb-org-3.0. Please verify its path and try again

私のリポジトリ:

vim /etc/yum.repos.d/mongodb-org-3.0.repo

[mongodb-org-3.0]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/$releaserver/mongodb-org/3.0/x86_64/
gpgcheck=0
enabled=1

試しました

yum clean all
yum check
yum erase apf
yum erase upgrade 

また試しました

Sudo sed -i 's/https/http/g' /etc/yum.repos.d/mongodb-org-3.0.repo

私のyum.conf

[root@localhost home]# cat /etc/yum.conf
[main]
cachedir=/var/cache/yum/$basearch/$releasever
keepcache=0
debuglevel=2
logfile=/var/log/yum.log
exactarch=1
obsoletes=1
gpgcheck=1
plugins=1
installonly_limit=5
bugtracker_url=http://bugs.centos.org/set_project.php?project_id=19&ref=http://bugs.centos.org/bug_report_page.php?category=yum
distroverpkg=centos-release

#  This is the default, if you make this bigger yum won't see if the metadata
# is newer on the remote and so you'll "gain" the bandwidth of not having to
# download the new metadata and "pay" for it by yum not having correct
# information.
#  It is esp. important, to have correct metadata, for distributions like
# Fedora which don't keep old packages around. If you don't like this checking
# interupting your command line usage, it's much better to have something
# manually check the metadata once an hour (yum-updatesd will do this).
# metadata_expire=90m

# PUT YOUR REPOS HERE OR IN separate files named file.repo
# in /etc/yum.repos.d
[root@localhost home]# 

これを理解するのを手伝ってください!

また、SELinux = permissiveを設定しました。エラーを修正した後、次のエラーが発生します。

[root@localhost Hubatrix]# yum clean all
Loaded plugins: fastestmirror, refresh-packagekit, security
Cleaning repos: base extras mongodb-org-3.0 updates
Cleaning up Everything
Cleaning up list of fastest mirrors
[root@localhost Hubatrix]# cat /etc/yum.repos.d/mongodb-org-3.0.repo
[mongodb-org-3.0]
name=MongoDB Repository 
baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.0/x86_64/repodata/repomd.xml
gpgcheck=0
enabled=1

[root@localhost Hubatrix]# Sudo yum install -y mongodb-org
Loaded plugins: fastestmirror, refresh-packagekit, security
Setting up Install Process
Determining fastest mirrors
 * base: centos.excellmedia.net
 * extras: centos.excellmedia.net
 * updates: centos.excellmedia.net
base                                                                                                                          | 3.7 kB     00:00     
base/primary_db                                                                                                               | 4.6 MB     01:21     
extras                                                                                                                        | 3.4 kB     00:00     
extras/primary_db                                                                                                             |  31 kB     00:00     
https://repo.mongodb.org/yum/redhat/6/mongodb-org/3.0/x86_64/repodata/repomd.xml/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: mongodb-org-3.0. Please verify its path and try again
8
hubatrix

エラーはyumからかなり明確です:

http://repo.mongodb.org/yum/redhat/%24releaserver/mongodb-org/3.0/x86_64/repodata/repomd.xml :[Errno 14] PYCURL ERROR 22-"リクエストされたURL返されたエラー:404見つかりません」

そのURLの反対側にyumをダウンロードするためのファイルがないため、404になります。そのURLをブラウザーに入力し、ナビゲートを開始して、実際にそこにあるファイルを確認してください。

これは私が彼らのリポジトリを閲覧するときの正しいURLです:

彼らは物事を動かしたのではないかと思いますが、repomd.xmlファイルを再生成しませんでした。パッケージを手動でダウンロードし、yum install ..を使用してインストールすることで、問題を回避できます。

打ち間違え

しかし、私はあなたのレポファイルにタイプミスがあると思います:

baseurl = https://repo.mongodb.org/yum/redhat/ $ releaserver/mongodb-org/3.0/x86_64 /

これでなければなりません:

baseurl = https://repo.mongodb.org/yum/redhat/ $ releasever/mongodb-org/3.0/x86_64 /

4
slm

これは、リポジトリ設定がダーティである場合に発生します。

これを試して

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

次に、リポジトリを再度作成します

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

次にこれを追加します:

[mongodb-org-3.4]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/Amazon/2013.03/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
3

/$releaserverを削除してこの問題を解決し、リンクhttp://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.0/x86_64/の7Serverを置き換えたので、そのリンクをこの変更に置き換えてみてください。

0
Poorna