Created
December 16, 2015 08:28
-
-
Save coder4web/8a1d6725a380751e826b to your computer and use it in GitHub Desktop.
Sphinx (sphinxsearch) install from source
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# @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