5
5

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 5 years have passed since last update.

rpmが失敗した時の対応

Last updated at Posted at 2015-07-13

やったこと

# cat /etc/redhat-release
CentOS release 5.9 (Final)

# rpm -Uvh https://yum.newrelic.com/pub/newrelic/el5/x86_64/newrelic-repo-5-3.noarch.rpm
→失敗

# wget https://yum.newrelic.com/pub/newrelic/el5/x86_64/newrelic-repo-5-3.noarch.rpm
# rpm -ivh https://yum.newrelic.com/pub/newrelic/el5/x86_64/newrelic-repo-5-3.noarch.rpm
→失敗

# wget https://yum.newrelic.com/pub/newrelic/el5/x86_64/newrelic-repo-5-3.noarch.rpm
# rpm -ivh http://yum.newrelic.com/pub/newrelic/el5/x86_64/newrelic-repo-5-3.noarch.rpm
→成功

rpmのオプション

-i | --install  RPMパッケージをインストールする。
-U | --upgrade  RPMパッケージをアップグレードする。すでにパッケージがインストールされている場合,そのパッケージを新しいバージョンにアップグレードする。パッケージがインストールされていない場合,新たにそのパッケージをインストールする。
-h | --hush 処理の進行状況を「#」記号で表示する。
-v | --verbose  操作対象のパッケージ名を表示する。

結論

単純にrpmでhttpsでが通らなかったようだ。

5
5
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
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?