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
search
command 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 integrate Sphinxsearch with Yii2?
- How do I configure SphinxSearch using YAML?
- How do I set up SphinxSearch with Zoom?
- How do I configure SphinxSearch to ignore certain stop words?
- How can I use Sphinx Search to create a wiki?
- How do I use Sphinxsearch with Zsh?
- How can I use SphinxSearch and Zabbix together to monitor my system?
- How do I use SphinxSearch to count words in a text?
- How do Sphinx Search and Lucene compare in terms of performance and features?
- How do I install Sphinxsearch 3 on Ubuntu?
See more codes...