71
75

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.

tokyo-m.rubygems.org が落ちていて rubygems がインストールできない。

Last updated at Posted at 2013-07-30

rubygems.org の地域ミラーであるところの tokyo-m.rubygems.org が落ちているようで gem がインストールできない。

$ bundle install
Fetching source index from http://rubygems.org/
Network error while fetching http://tokyo-m.rubygems.org/quick/Marshal.4.8/actionmailer-3.2.5.gemspec.rz

とりあえずミラーサーバである production.cf.rubygems.org を指定することで回避した。

Gemfile ならこんなかんじ。

#source 'http://rubygems.org'
source 'http://production.cf.rubygems.org'

gem ならこんな感じ。

$ gem source --add http://production.cf.rubygems.org

###追記

当初は
http://production.s3.rubygems.org としていましたが、さらにCloundFrontにより負荷分散された http://production.cf.rubygems.org のほうが良いのではないかという意見を頂いたので変更しました。

あざます!>@u1さん

###追記2

2013/07/30の朝方に発生していた問題については
http://rubygems.org には繋がらないが、 https://rubygems.org は稼働している、という状態のようです。

ので、下記のようにすると回避できるみたいです。

source  https://rubygems.org

ありがとうございます!> @ymrl@github さん

71
75
7

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
71
75

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?