blob: bf7b9194d45ac7714ec4e42702fef128371f026b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
# Stops and restarts the Solr (Lucene) search engine daemon. Redirects it
# to log.
cd `dirname $0`
cd ..
rake solr:stop
nohup rake solr:start >log/solr.log 2>log/solr.err.log
|