Skip to content

Instantly share code, notes, and snippets.

@jet10000
Created April 11, 2014 09:38
Show Gist options
  • Save jet10000/10453829 to your computer and use it in GitHub Desktop.
Save jet10000/10453829 to your computer and use it in GitHub Desktop.
installing sphinxsearch ubuntu13.10
There are two ways of getting Sphinx for Ubuntu: regular deb packages and the Launchpad PPA repository.
Deb packages:
Sphinx requires a few libraries to be installed on Debian/Ubuntu. Use apt-get to download and install these dependencies:
$ sudo apt-get install mysql-client unixodbc libpq5
Now you can install Sphinx:
$ sudo dpkg -i sphinxsearch_2.0.10-release-0ubuntu11~precise_amd64.deb
PPA repository (Ubuntu only).
Installing Sphinx is much easier from Sphinxsearch PPA repository, because you will get all dependencies and can also update Sphinx to the latest version with the same command.
First, add Sphinxsearch repository and update the list of packages:
$ sudo add-apt-repository ppa:builds/sphinxsearch-stable
$ sudo apt-get update
Install/update sphinxsearch package:
$ sudo apt-get install sphinxsearch
Sphinx searchd daemon can be started/stopped using service command:
$ sudo service sphinxsearch start
http://sphinxsearch.com/docs/2.1.7/installing-debian.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment