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 can I use Sphinx Search to generate word forms?
- How do I find the version of Sphinx Search I'm using?
- How can I use SphinxSearch with PHP?
- How do I install Sphinxsearch on Ubuntu?
- How can I use SphinxSearch and Zabbix together to monitor my system?
- How do I integrate Sphinxsearch with Yii2?
- How do I configure SphinxSearch using YAML?
- How do I access and use the SphinxSearch source code?
- How can I set up SphinxSearch to work with Yandex?
- How do I install and configure Sphinxsearch on Ubuntu?
See more codes...