Possible Duplicate:
Problem running Thinking Sphinx with Rails 2.3.5
I'm running rails 2.3.5 Every time I run rake ts:start or ts.rebuild the rake file quite with the following:
Sphinx cannot be found on your system. You may need to configure the following
settings in your config/sphinx.yml file:
* bin_path
* searchd_binary_name
* indexer_binary_name
rake aborted!
key not found
I have Sphinx running and the sphinx.yml in config is correct:(I believe)
bin_path: /usr/bin/searchd
searchd_binary_name: searchd
indexer_binary_name: sphinx-indexer
Sphinx seems to be running, as when it is running ( by running command: service searchd start)
The error I get when I browse to a page that uses search is:
ThinkingSphinx::SphinxError in Jobs#index
Showing app/views/jobs/index.html.erb where line #30 raised:
unknown local index 'job_core' in search request
Rather than a connection error? Probably a multitude of problems here but i"m stuck. Alternatively, I could rewrite the code I'm amending to use a different search function, if so, what's best?