2

ここでゆっくりと失神。GitHub の公式ガイドに従って、GitLab をセットアップしました。

「バンドルインストール」まではなんでもいいです。しかし、ここでこれを試してみると:

$ sudo -u git -H bundle install --deployment --without development test postgres aws

https://rubygems.org/からソースインデックスを取得しています」でハングします

gemfile の何かを変更すると、さらに問題が発生します...

rake がすでにインストールされている場合は、次のエラー メッセージが表示されます。

$ sudo -u git -H bundle exec rake gitlab:setup RAILS_ENV=production
Could not find rake-10.1.0 in any of the sources
Run `bundle install` to install missing gems.

ここで何をしますか?必要以上に複雑なのはなぜですか?誰かが助けてくれたら、私はうれしいです。

ありがとう。

4

1 に答える 1

6

問題を解決しました(14時間神経を失った後...)

「Gemのインストール」までは公式ガイドからなんでもOKです。

次に、ここでこれを試しました:

$ sudo bundle install --path vendor/bundle

http://bb-m.rubygems.org/gems/rake-10.1.0.gem (wget を使用)から「rake」を「/home/git/gitlab/vendor/bundle/ruby/2.0」にダウンロードしたよりも.0/キャッシュ" ディレクトリ

すべての権利を与えた (chmod 777 rake....)

そして、これを試しました:

$ sudo -u git -H bundle install --verbose --deployment --without development test postgres aws

そして - >

Your bundle is complete!
Gems in the groups development, test, postgres and aws were not installed.
It was installed into ./vendor/bundle
Post-install message from rdoc:
Depending on your version of ruby, you may need to install ruby rdoc/ri data:

<= 1.8.6 : unsupported
 = 1.8.7 : gem install rdoc-data; rdoc-data --install
 = 1.9.1 : gem install rdoc-data; rdoc-data --install
>= 1.9.2 : nothing to do! Yay!
Post-install message from haml:

HEADS UP! Haml 4.0 has many improvements, but also has changes that may break
your application:

* Support for Ruby 1.8.6 dropped
* Support for Rails 2 dropped
* Sass filter now always outputs <style> tags
* Data attributes are now hyphenated, not underscored
* html2haml utility moved to the html2haml gem
* Textile and Maruku filters moved to the haml-contrib gem

For more info see:

http://rubydoc.info/github/haml/haml/file/CHANGELOG.md

Post-install message from httparty:
When you HTTParty, you must party hard!
于 2013-10-03T23:53:52.963 に答える