Skip to content

Instantly share code, notes, and snippets.

@bruschill
Last active December 11, 2015 22:39
Show Gist options
  • Save bruschill/4671202 to your computer and use it in GitHub Desktop.
Save bruschill/4671202 to your computer and use it in GitHub Desktop.
#regenerate conf
bundle exec rake ts:conf
#rebuild indexes
bundle exec rake ts:rebuild
#!/bin/bash
sudo apt-get remove sphinxsearch
cd ~
curl -O http://sphinxsearch.com/files/sphinx-2.0.6-release.tar.gz
tar -xvf sphinx-2.0.6-release.tar.gz
cd sphinx-2.0.6-release
./configure --with-mysql
make
sudo make install
cd ..
rm -rf sphinx-2.0.6-release*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment