sphinxsearchHow do I install Sphinxsearch 3 on Ubuntu?
- Download the latest version of Sphinxsearch from Sphinxsearch official website.
- Extract the downloaded tar file using the command:
tar -xzvf sphinx-3.x.x-release.tar.gz
. - Change the directory to the extracted folder using the command:
cd sphinx-3.x.x-release
. - Run the configuration script using the command:
./configure
. - Install Sphinxsearch using the command:
make && make install
. - Start the search daemon using the command:
searchd --config /etc/sphinxsearch/sphinx.conf
. - Test the installation using the command:
search --config /etc/sphinxsearch/sphinx.conf test
.
$ tar -xzvf sphinx-3.x.x-release.tar.gz
$ cd sphinx-3.x.x-release
$ ./configure
$ make && make install
$ searchd --config /etc/sphinxsearch/sphinx.conf
$ search --config /etc/sphinxsearch/sphinx.conf test
Sphinx 3.0.3-release (r4487)
Copyright (c) 2001-2018, Andrew Aksyonoff
Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
using config file '/etc/sphinxsearch/sphinx.conf'...
index 'test': query 'test ': returned 0 matches of 0 total in 0.000 sec
More of Sphinxsearch
- How do I use Sphinxsearch with Zsh?
- How can I use SphinxSearch and Zabbix together to monitor my system?
- How do I set up SphinxSearch with Zoom?
- How do I configure SphinxSearch using YAML?
- How can I use Sphinx Search to generate word forms?
- How do I integrate Sphinxsearch with Yii2?
- How can I set up SphinxSearch to work with Yandex?
- How do I use SphinxSearch with XMLPipe2?
- How do I configure SphinxSearch to ignore certain stop words?
- How can I use Sphinx Search to weigh my search results?
See more codes...