Skip to content
This repository has been archived by the owner on Aug 16, 2020. It is now read-only.

Commit

Permalink
fixing reinstall script
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter committed Feb 13, 2013
1 parent d335c48 commit 9269021
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
10 changes: 1 addition & 9 deletions Readme.md
Expand Up @@ -14,15 +14,7 @@ Apache License 2.0

# Installation

> mvn -DskipTests clean package
> // # TODO since github removed the download TAB we need to find an alternative hosting solution!
> // # TODO sudo $ES_HOME/bin/plugin install karussell/elasticsearch-reindex
> // sudo $ES_HOME/bin/plugin -url ./target -install reindex
> sudo service elasticsearch restart
./reinstall.sh

you should see 'loaded [reindex], sites []' in the logs. Or use the reinstall.sh script for development purposes

Expand Down
3 changes: 2 additions & 1 deletion reinstall.sh 100644 → 100755
@@ -1,5 +1,6 @@
ES=/usr/share/elasticsearch
sudo $ES/bin/plugin remove reindex
mvn -DskipTests clean package
sudo $ES/bin/plugin -url ./target/ -install reindex
FILE=`ls ./target/elasticsearch-*zip`
sudo $ES/bin/plugin -url file:$FILE -install reindex
sudo service elasticsearch restart

0 comments on commit 9269021

Please sign in to comment.