sphinxsearchHow do I install SphinxSearch on Debian?
- Download and install SphinxSearch from the official website:
wget http://sphinxsearch.com/files/sphinx-2.2.11-release.tar.gz tar -xzvf sphinx-2.2.11-release.tar.gz - Change the working directory to the extracted folder:
cd sphinx-2.2.11-release - Configure and compile the source code:
./configure make - Install SphinxSearch:
make install - Add SphinxSearch to the system path:
export PATH=$PATH:/usr/local/sphinx/bin - Start the SphinxSearch daemon:
searchd - To verify the installation, run the
searchcommand and you should see the following output:search --help Sphinx 2.2.11-id64-release (r5161) Copyright (c) 2001-2018, Andrew Aksyonoff Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
Helpful links
More of Sphinxsearch
- How do I use Sphinxsearch with Zsh?
- How can I use Sphinx Search to generate word forms?
- How can I use Sphinx Search to create a wiki?
- How do I set up SphinxSearch with Zoom?
- How do I configure SphinxSearch using YAML?
- How do I find the version of Sphinx Search I'm using?
- How do I install Sphinx Search?
- How can I set up SphinxSearch to work with Yandex?
- How do I use SphinxSearch with XMLPipe2?
- How can I use Sphinx to search for words in a specific form?
See more codes...