我正在将我的应用程序升级到Rails 4,现在得到我的rails服务器,以及太阳黑子solr,经过大量的修补,运行后,我可以访问Solr管理页面。但是,当我尝试从我的rails开发应用程序访问solr进行搜索或索引时,我收到以下错误
RSolr::Error::Http (RSolr::Error::Http - 404 Not Found
Error: Not Found
Request Data: "fq=type%3AMatch&fq=date_in_utc_d%3A%7B2013%5C-11%5C-29T21%5C%3A00%5C%3A00Z+TO+%2A%7D&fq=approval__s%3AAPPROVED&sort=date_d+asc&q=london&fl=%2A+score&qf=caption_text%5E10+city_name_text%5E10+team_name_text%5E10+&defType=edismax&start=0&rows=30"
Backtrace: /Users/bashar/.rvm/gems/ruby-2.0.0-p353/gems/rsolr-1.0.9/lib/rsolr/client.rb:268:in `adapt_response'
/Users/bashar/.rvm/gems/ruby-2.0.0-p353/gems/rsolr-1.0.9/lib/rsolr/client.rb:175:in `execute'
/Users/bashar/.rvm/gems/ruby-2.0.0-p353/gems/rsolr-1.0.9/lib/rsolr/client.rb:161:in `send_and_receive'
/Users/bashar/.rvm/gems/ruby-2.0.0-p353/gems/sunspot_rails-2.1.0/lib/sunspot/rails/solr_instrumentation.rb:16:in `block in send_and_receive_with_as_instrumentation'
/Users/bashar/.rvm/gems/ruby-2.0.0-p353/gems/activesupport-4.0.1/lib/active_support/notifications.rb:159:in `block in instrument'
/Users/bashar/.rvm/gems/ruby-2.0.0-p353/gems/activesupport-4.0.1/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
/Users/bashar/.rvm/gems/ruby-2.0.0-p353/gems/activesupport-4.0.1/lib/active_support/notifications.rb:159:in `instrument'
/Users/bashar/.rvm/gems/ruby-2.0.0-p353/gems/sunspot_rails-2.1.0/lib/sunspot/rails/solr_instrumentation.rb:15:in `send_and_receive_with_as_instrumentation'
(eval):2:in `post'
/Users/bashar/.rvm/gems/ruby-2.0.0-p353/gems/sunspot-2.1.0/lib/sunspot/search/abstract_search.rb:45:in `execute'
/Users/bashar/.rvm/gems/ruby-2.0.0-p353/gems/sunspot-2.1.0/lib/sunspot/session.rb:59:in `search'):
<a href="txmt://open?url=file:///Users/bashar/rails-projects/myapp/app/models/match.rb&line=474&column=1">app/models/match.rb:474:in `upcoming_games'</a>
<a href="txmt://open?url=file:///Users/bashar/rails-projects/myapp/app/controllers/tickets_controller.rb&line=34&column=1">app/controllers/tickets_controller.rb:34:in `search'</a>
Rendered /Users/bashar/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
Rendered /Users/bashar/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
Rendered /Users/bashar/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
Rendered /Users/bashar/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.3ms)
这是 sunspot.yml 文件。
production:
solr:
hostname: ENV['WEBSOLR_URL']
port: 80
log_level: WARNING
path: /solr/production
# read_timeout: 2
# open_timeout: 0.5
development:
solr:
hostname: 192.168.0.11
port: 8981
log_level: INFO
path: /solr/development
test:
solr:
hostname: localhost
port: 8981
log_level: WARNING
path: /solr/test
我验证了solr数据是否在正确的路径中。我知道有类似的帖子,但他们的解决方案不起作用。我试着评论路径:,或使用/ solr / default,或者只是/ solr,或使用ip而不是localhost无济于事
有什么想法吗?关于如何看到导轨suntspot solr请求试图到达哪里的提示?
答案 0 :(得分:14)
解决了!回答suggested here中的后续步骤几乎没有改动:
答案 1 :(得分:10)
我对此问题的解决方法是: 在config / sunspot.yml配置文件中注释path参数(默认配置)。
默认为:#path: /solr/development.
在此之后,
停止所有solr进程,
ps aux | grep 'solr'
kill PROCESS_ID
删除应用程序目录中的“solr”文件夹。
rm -rf solr
这将删除以前的配置。
然后,rake sunspot:solr:start
启动solr服务器后再次尝试reindex,
rake sunspot:reindex
问题应该得到解决。
我使用了太阳黑子solr全文搜索我的一个项目,在那里我已经解决了上述问题。
e.g。参考链接 - http://moreaboutsports.com/
答案 2 :(得分:1)
我遇到的问题是gem试图为Jetty tempDirectory使用自己的gem目录,当然它没有写权限,所以服务器从未启动过。它似乎在后台启动,但它并没有真正运行。当尝试在前台rake sunspot:solr:run
中运行它时,它会显示一些错误,但我仍然需要将其跟踪到gem中的配置文件。你必须编辑gem配置来修复它。我向GitHub添加了一个问题:
https://github.com/sunspot/sunspot/issues/561
问题是sunspot_solr-2.1.0 / bin / contexts / solr.xml文件。你必须将tempDirectory设置为具有写权限的东西,比如/ tmp,而不是'。',gem目录。
如果您仍然无法启动Solr,请尝试删除tmp目录并重新启动服务器。我有一个奇怪的情况,它指向/ tmp目录并且正在工作,但是当我重新启动服务器时,它一直给我404错误!不知何故,所有文件都被删除了,这取决于它!由于该目录仍然存在,因此它不会重新复制WAR并将其展开。如果删除tmp目录,则会重新复制并重新展开WAR。
ls /tmp/solr-webapp/
当然,这是编辑/usr/local/rvm/gems/ruby-2.0.0-p247.../gems/sunspot_solr-2.1.0/solr/contexts/solr.xml文件的补充。< / p>