Acabo de instalar Sphinx (distro: archlinux) descargando la fuente. Luego instalé el plugin "Thinking Sphinx" para Rails.Problema al ejecutar Thinking Sphinx con Rails 2.3.5
he seguido el official page setup y this Screencast from Ryan Bates, pero cuando trato de índice de los modelos que me da este error:
$ rake thinking_sphinx:index
(in /home/benoror/Dropbox/Proyectos/cotizahoy)
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
For more information, read the documentation:
http://freelancing-god.github.com/ts/en/advanced_config.html
Generating Configuration to /home/benoror/Dropbox/Proyectos/cotizahoy/config/development.sphinx.conf
sh: indexer: command not found
Traté de iniciar el daemon de forma manual (/ usr/bin/esfinge searchd), cambiando el archivo config/sphinx.yml:
devlopment:
searchd_binary_name: sphinx-searchd
indexer_binary_name: sphinx-indexer
Pero muestra el mismo error, alguna idea?
tengo una ruta de contenedor adecuada. pero aún muestra el mismo error –