You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
349 B
15 lines
349 B
#!/bin/sh |
|
|
|
SCRIPT=$(readlink -f "$0") |
|
CWD=$(dirname "$SCRIPT") |
|
|
|
# install sphinxsearch: |
|
echo 'yes' | sudo add-apt-repository ppa:builds/sphinxsearch-daily |
|
sudo apt-get update |
|
sudo apt-get install sphinxsearch |
|
|
|
# setup test Sphinx indexes: |
|
indexer --config $CWD/../sphinx/sphinx.conf --all |
|
|
|
# run searchd: |
|
searchd --config $CWD/../sphinx/sphinx.conf
|
|
|