1
$ rake assets:precompile
rake aborted!
could not connect to server: Network is unreachable
    Is the server running on host "192.168.163.70" and accepting
    TCP/IP connections on port 5432?

(See full trace by running task with --trace)
rake aborted!
Command failed with status (1): [/usr/local/Cellar/ruby/1.9.3-p0/bin/ruby /...]

そのため、開発ボックスでアセットをプリコンパイルしようとしています。なんらかの理由で、本番データベース (192.168.163.70) への接続を試み、接続に失敗すると中断します。

なぜそれが行われ、どうすれば問題を解決できますか?

4

2 に答える 2

1

Rakeタスクファイルの1つに次の行がありました

require File.expand_path(File.join(File.dirname(__FILE__), '../..', 'config', 'environment'))

それを削除すると、問題は解決しました。

于 2011-12-21T08:28:28.897 に答える
0

RAILS_ENVを確認してくださいproduction。現時点でに設定されている必要があります。

于 2011-12-21T08:16:35.417 に答える