Commit 9e3dc357f71616fb5ceec5f7289fe6a4594f31ba
1 parent
9b38f004
Exists in
elasticsearch_api
updating install instructions
Showing
1 changed file
with
13 additions
and
6 deletions
Show diff stats
plugins/elasticsearch/README.md
... | ... | @@ -10,20 +10,27 @@ Download: https://www.elastic.co/downloads/past-releases/elasticsearch-1-7-5 |
10 | 10 | INSTALL |
11 | 11 | ======= |
12 | 12 | |
13 | -Install dependencies | |
13 | +Install elasticsearch. | |
14 | 14 | |
15 | -Install elasticsearch package and start service. | |
16 | -By default, the service runs on port 9200 | |
15 | + $ cd plugins/elasticsearch | |
16 | + $ rake install | |
17 | 17 | |
18 | -Install gems listed in plugin Gemfile. If this step fail, just copy the gems to core Gemfile | |
19 | -and run the command 'bundle install' | |
18 | +After install start the service, by default, the service runs on port 9200. | |
19 | + | |
20 | +Install gems listed in plugin Gemfile. | |
21 | + | |
22 | + $ cd plugins/elasticsearch | |
23 | + $ bundle install | |
24 | + | |
25 | +If this step fail, just copy the gems to core Gemfile and run the command | |
26 | +'bundle install'. | |
20 | 27 | |
21 | 28 | Enable plugin |
22 | 29 | ------------- |
23 | 30 | |
24 | 31 | Execute the command to enable Elasticsearch Plugin at your noosfero: |
25 | 32 | |
26 | -./script/noosfero-plugins enable elasticsearch | |
33 | + $ ./script/noosfero-plugins enable elasticsearch | |
27 | 34 | |
28 | 35 | Active plugin |
29 | 36 | ------------- | ... | ... |