Skip to content

Commit 4406330

Browse files
author
Robin Duda
committed
update readme to include ES 7 configuration.
1 parent 79bc9f0 commit 4406330

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Parses XLSX/XLS/CSV files into ElasticSearch using column titles from a specifie
55
![sample UI image](https://raw.githubusercontent.com/codingchili/parser-excel-elasticsearch/master/excelastic.webp)
66

77
## Features
8-
- import excel (.xlsx/.xls) files into elasticsearch.
8+
- import excel (.xlsx/.xls) files into ElasticSearch.
99
- easy to use web interface, with support for commandline imports too.
1010
- csv files can be converted to .xlsx using office and then imported.
1111
- clear the index before importing, or append to existing index.
@@ -17,17 +17,19 @@ Parses XLSX/XLS/CSV files into ElasticSearch using column titles from a specifie
1717
## Prerequisites
1818
The application requires ElasticSearch as its output.
1919

20-
1. ElasticSearch (version 5+/6+) should not require any additional configuration or installation, just download and run from [Elastic](https://www.elastic.co/products).
20+
1. ElasticSearch (version 5+/6+/7+) should not require any additional configuration or installation, just download and run from [Elastic](https://www.elastic.co/products).
2121

2222
2. Grab the latest .jar file from [releases](https://github.com/codingchili/parser-excel-elasticsearch/releases).
2323

24-
Tested with ElasticSearch 5.6.2 and 6.4.2.
24+
Tested with ElasticSearch 5.6.2, 6.4.2 and 7.0.0-alpha1
2525

2626
## Running with docker
2727
```
28-
docker run -it -p 5252:5252 -e es_port=9200 -e es_host=localhost codingchili/excelastic
28+
docker run -it -p 8080:8080 -e es_port=9200 -e es_host=<host IP> codingchili/excelastic
2929
```
30-
Note: there is currently no support for TLS or basic authentication when using the docker image.
30+
Note: ElasticSearch needs to bind to the es_host address, this can be configured as
31+
`network.host: 0.0.0.0` in elasticsearch.yaml. Please remember that its possible to
32+
connect to it from another machine when binding to all interfaces.
3133

3234
## Running the JAR
3335

0 commit comments

Comments
 (0)