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 set up SphinxSearch with Zoom?
- How do I configure SphinxSearch to ignore certain stop words?
- How do I install and configure Sphinxsearch on Ubuntu?
- How can I use Sphinx Search to generate word forms?
- How do I run SphinxSearch?
- How can I use Sphinx Search to create a wiki?
- How do I use SphinxSearch to count words in a text?
- How do Sphinx Search and Solr compare for software development?
- How can I use an alternative to SphinxSearch for software development?
- How do Sphinx Search and Lucene compare in terms of performance and features?
See more codes...