sphinxsearchHow do I install SphinxSearch on Linux?
- Download the latest version of SphinxSearch from its download page.
- Extract the downloaded archive with the command:
tar -xzvf sphinx-<version>-release.tar.gz
- Change directory to the extracted directory:
cd sphinx-<version>-release
- Run the configuration script:
./configure
- Compile and install SphinxSearch with the command:
make && make install
- Start SphinxSearch server with the command:
searchd --config <config_file>
- Test the installation with the command:
search --config <config_file> test
$ tar -xzvf sphinx-2.2.11-release.tar.gz
$ cd sphinx-2.2.11-release
$ ./configure
$ make && make install
$ searchd --config sphinx.conf
$ search --config sphinx.conf test
Sphinx 2.2.11-id64-release (r5654)
Copyright (c) 2001-2017, Andrew Aksyonoff
Copyright (c) 2008-2017, Sphinx Technologies Inc (http://sphinxsearch.com)
using config file 'sphinx.conf'...
index 'test1': query 'test' retrieved 0 matches of 0 documents in 0.000 sec
More of Sphinxsearch
- How do I configure SphinxSearch using YAML?
- How can I use Sphinx Search to manage my team of workers?
- How do I use the word count ranker in SphinxSearch?
- How do I use Sphinxsearch with Zsh?
- How do I integrate Sphinxsearch with Yii2?
- How do I configure SphinxSearch to listen for incoming requests?
- How do I use SphinxSearch with XMLPipe2?
- How can I use SphinxSearch and Zabbix together to monitor my system?
- How do I configure SphinxSearch to ignore certain stop words?
- How can I use Sphinxsearch with Django?
See more codes...