9951 explained code solutions for 126 technologies


sphinxsearchHow do I set up Sphinx search on Windows?


  1. Download the latest version of Sphinx from http://sphinxsearch.com/downloads/.
  2. Unzip the downloaded file.
  3. Open the command line and navigate to the unzipped folder.
  4. Run the configuration script with the following command:
./configure
  1. Compile the source code with the following command:
make
  1. Install the compiled binary with the following command:
make install
  1. Start the Sphinx service with the following command:
searchd --config /path/to/sphinx.conf

Helpful links

http://sphinxsearch.com/docs/

https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-sphinx-on-ubuntu-14-04

Edit this code on GitHub