-
Notifications
You must be signed in to change notification settings - Fork 21
Troubleshooting
This is a list of common errors you may encounter when running the site.
-
Errno::ECONNREFUSED
Connection refused - {:data=>"fq=type%3AArticle&fq=date_dt%3A%7B2013%5C-08%5C-13T19%5C%3A25%5C%3A43Z+TO+%2A%7D&fq=date_dt%3A%7B%2A+TO+2013%5C-08%5C-27T19%5C%3A25%5C%3A43Z%7D&q=id%3AArticle%5C+27&mlt.fl=title_textsv%2Ccontent_textsv&start=0&rows=4", :method=>:post, :params=>{:wt=>:ruby}, :query=>"wt=ruby", :headers=>{"Content-Type"=>"application/x-www-form-urlencoded; charset=UTF-8"}, :path=>"mlt", :uri=>#<URI::HTTP:0x0000000956dfe8 URL:http://localhost:8982/solr/default/mlt?wt=ruby>, :open_timeout=>nil, :read_timeout=>nil, :retry_503=>nil, :retry_after_limit=>nil}
This means your Solr server is not running. To fix, run
rake sunspot:solr:start
.Is the server running on host "localhost" (127.0.0.1) and accepting TCP/IP connections on port 5432?``` Try restarting the postgres server using `sudo /etc/init.d/postgresql restart`.
-
Sprockets::FileNotFound
couldn't find file 'jquery.cookie/jquery.cookie'
This means you do not have your bower assets install. Run
rake bower:install bower:resolve
.