Skip to content

Instantly share code, notes, and snippets.

@MustafaMagdi
Forked from coder4web/sphinxsearch_src.sh
Created August 25, 2016 19:32
Show Gist options
  • Save MustafaMagdi/b527c576a7bf054d507b87b026e7ec23 to your computer and use it in GitHub Desktop.
Save MustafaMagdi/b527c576a7bf054d507b87b026e7ec23 to your computer and use it in GitHub Desktop.
Sphinx (sphinxsearch) install from source
# @see http://sphinxsearch.com/downloads/release/
# redhats: yum remove sphinx
# debians: apt-get remove sphinxsearch
cd /usr/local/src
wget -c http://sphinxsearch.com/files/sphinx-2.2.10-release.tar.gz
tar xzvf sphinx-2.2.10-release.tar.gz
cd sphinx-2.2.10-release
./configure
make install
which searchd
/usr/local/bin/searchd -h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment