2014-11-17 13 views
0

내 응용 프로그램을 끝내고 프로덕션 환경을 확인하려고합니다. 응용 프로그램은 검색을 위해 sunspot_rails gem을 사용합니다. 프로덕션 환경에서 작동하지 내 생산 로그는 다음과 같은 제공합니다.?Errno :: ECONNREFUSED (연결이 거부되었습니다 ... 프로덕션 환경에서

class ArticlesController < ApplicationController 
    before_filter :require_login, except: [:show, :index] 
def index 
    @search = Article.search do 
    fulltext params[:search] 
    paginate :page => params[:page], :per_page => 1 
    end 
    @articles = @search.results 
    #@articles_by_month = Article.find(:all).group_by { |post| post.created_at.strftime("%B") } 
end 
def show 
    @article = Article.find(params[:id]) 
    @comment = Comment.new 
@comment.article_id = @article.id 
end 
def new 
@article = Article.new 
end 
def create 
@article = Article.new(article_params) 
@article.save 
redirect_to article_path(@article) 
end 
def edit 
@article = Article.find(params[:id]) 
end 
def destroy 
@article = Article.find(params[:id]) 
@article.destroy 
redirect_to articles_path 
end 
def update 
@article = Article.find(params[:id]) 
@article.update(article_params) 
flash.notice = "Article '#{@article.title}' Updated!" 
redirect_to article_path(@article) 
end 
def article_params 
params.require(:article).permit(:title, :body, :tag_list, :picture) 
end 
end 
:

Errno::ECONNREFUSED (Connection refused -  {:data=>"fq=type%3AArticle&start=0&rows=1&q=%2A%3A%2A", :method=>:post, :params=>{:wt=>:ruby}, :query=>"wt=ruby", :headers=>{"Content-Type"=>"application/x-www-form-urlencoded; charset=UTF-8"}, :path=>"select", :uri=>#<URI::HTTP:0x007ff38e350578 URL:http://localhost:8983/solr/production/select?wt=ruby>, :open_timeout=>nil, :read_timeout=>nil, :retry_503=>nil, :retry_after_limit=>nil}): 
app/controllers/articles_controller.rb:12:in `index' 

을 나는이 문제를 해결하려면 어떻게 여기

내 articles_controller입니다

source 'https://rubygems.org' 
ruby '2.0.0' 
#ruby-gemset=railstutorial_rails_4_0 
gem 'rails', '4.0.8' 
gem 'bcrypt','3.1.7' 
gem 'bootstrap-sass', '3.2.0.0' 
gem 'sprockets', '2.11.0' 
gem 'carrierwave',    '0.10.0' 
gem 'mini_magick',    '3.8.0' 
gem 'fog',      '1.23.0' 
gem 'sorcery' 
gem 'will_paginate',   '3.0.7' 
gem 'bootstrap-will_paginate', '0.0.10' 
gem 'sunspot_rails' 
gem 'progress_bar' 
group :development, :test do 
gem 'sqlite3', '1.3.8' 
gem 'rspec-rails', '2.13.1' 
gem 'sunspot_solr' 
end 
group :test do 
gem 'selenium-webdriver', '2.35.1' 
gem 'capybara', '2.1.0' 
end 
gem 'sass-rails', '4.0.3' 
gem 'uglifier', '2.1.1' 
gem 'coffee-rails', '4.0.1' 
gem 'jquery-rails', '3.0.4' 
gem 'turbolinks', '1.1.1' 
gem 'jbuilder', '1.0.2' 
group :doc do 
gem 'sdoc', '0.3.20', require: false 
end 
group :production do 
gem 'pg', '0.15.1' 
gem 'rails_12factor', '0.0.2' 
end 

가 어떻게이 문제를 해결 않습니다

그리고 여기 내 Gemfile입니까?

답변

1

프로덕션 서버에서 solr 인스턴스를 시작 했습니까?

bundle exec sunspot-solr start -p 8983 
0

저는 Solr과 비슷한 문제를 과거에 처리했습니다. 나는 그것을 위해 발사를 처리하기 위해 script를 만들었다. 그것은 액세스에 영향을 미칠 수있는 크래프 티 파일을 정리합니다.

희망이 도움이!

은 아래를 참조하십시오 :

pkill -f solr 

#remove old data 
rm -rf solr/data 
rm -rf solr/default 
rm -rf solr/development 
rm -rf solr/pids 
rm -rf solr/test 

while getopts 'pdt' flag; do 
    case "${flag}" in 
    d) export RAILS_ENV=development ;; 
    p) export RAILS_ENV=production ;; 
    t) export RAILS_ENV=test ;; 
    *) error "Unexpected option ${flag}" ;; 
    esac 
done 

#startup solr 
bundle exec rake sunspot:solr:start 

echo "Solr started successfully."