sphinxsearchHow do I run the Sphinxsearch indexer?
-
Install Sphinxsearch:
sudo apt-get install sphinxsearch -
Create a configuration file:
sudo nano /etc/sphinxsearch/sphinx.conf -
Configure the indexer:
indexer: This is the name of the indexer.source: This is the source of the data to be indexed.path: This is the directory where the indexer will store the data.docinfo: This is the type of information to be indexed.
-
Start the indexer:
indexer --config /etc/sphinxsearch/sphinx.conf --allOutput:
Sphinx 2.2.13-id64-release (rel22-r5006) Copyright (c) 2001-2015, Andrew Aksyonoff Copyright (c) 2008-2015, Sphinx Technologies Inc (http://sphinxsearch.com) using config file '/etc/sphinxsearch/sphinx.conf'... indexing index 'indexer'... collected 0 docs, 0.0 MB total 0 docs, 0 bytes total 0.007 sec, 0 bytes/sec, 0.00 docs/sec -
Monitor the indexer:
indexer --config /etc/sphinxsearch/sphinx.conf --statusOutput:
Sphinx 2.2.13-id64-release (rel22-r5006) Copyright (c) 2001-2015, Andrew Aksyonoff Copyright (c) 2008-2015, Sphinx Technologies Inc (http://sphinxsearch.com) using config file '/etc/sphinxsearch/sphinx.conf'... indexing index 'indexer'... collected 0 docs, 0.0 MB total 0 docs, 0 bytes total 0.007 sec, 0 bytes/sec, 0.00 docs/sec -
Stop the indexer:
indexer --config /etc/sphinxsearch/sphinx.conf --stopOutput:
Sphinx 2.2.13-id64-release (rel22-r5006) Copyright (c) 2001-2015, Andrew Aksyonoff Copyright (c) 2008-2015, Sphinx Technologies Inc (http://sphinxsearch.com) using config file '/etc/sphinxsearch/sphinx.conf'... indexing index 'indexer'... collected 0 docs, 0.0 MB total 0 docs, 0 bytes total 0.007 sec, 0 bytes/sec, 0.00 docs/sec -
Helpful links
More 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...