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 secMore of Sphinxsearch
- How can I use SphinxSearch and Zabbix together to monitor my system?
- How can I set up SphinxSearch to work with Yandex?
- How can I use Sphinx Search with Python to create an example application?
- How do I configure Sphinxsearch on a specific port?
- How can I use the Sphinx Search API in PHP?
- How can I use Sphinx Search to weigh my search results?
- How can I use Sphinx Search to create a wiki?
- How do I install Sphinx Search?
- How do I integrate Sphinxsearch with Yii2?
- How can I use Sphinx Search to generate word forms?
See more codes...