sphinxsearchHow do I update SphinxSearch on Ubuntu?
Updating SphinxSearch on Ubuntu is relatively easy. The following steps should be followed:
- Install SphinxSearch using
sudo apt-get install sphinxsearch
. - Stop the running SphinxSearch daemon using
sudo service sphinxsearch stop
. - Download the latest version of SphinxSearch from sphinxsearch.com.
- Unpack the downloaded archive using
tar -xzf sphinx-<version>.tar.gz
- Change the working directory to the unpacked directory using
cd sphinx-<version>
. - Install the new version of SphinxSearch using
./configure && make && sudo make install
. - Start the SphinxSearch daemon using
sudo service sphinxsearch start
.
sudo apt-get install sphinxsearch
sudo service sphinxsearch stop
tar -xzf sphinx-<version>.tar.gz
cd sphinx-<version>
./configure && make && sudo make install
sudo service sphinxsearch start
Output example
Reading package lists... Done
Building dependency tree
Reading state information... Done
Sphinxsearch is already the newest version (2.2.11-release).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
More of Sphinxsearch
- How do I configure SphinxSearch using YAML?
- How do I use Sphinxsearch with Zsh?
- How can I use SphinxSearch and Zabbix together to monitor my system?
- How do I integrate Sphinxsearch with Yii2?
- How do I install Sphinxsearch 3 on Ubuntu?
- How do I use SphinxSearch with XMLPipe2?
- How do I configure SphinxSearch to ignore certain stop words?
- How can I use Sphinx Search to generate word forms?
- How do I set up SphinxSearch with Zoom?
- How do Sphinx Search and Solr compare for software development?
See more codes...