Replies: 2 comments
-
Hello, If you are trying to user Datashare in SERVER mode, you also need to configure Redis and Elasticsearch servers. You can check out this repo with a full example: https://github.com/ICIJ/datashare-keycloak-integration There you will find a
Please note I changed the ElasticSearch version to 7.9.1, the latest one compatible with Datashare. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks a lot!
I forwarded your answer to the server administrator.
… Pierre Romera ***@***.***> hat am 01.09.2022 14:00 CEST geschrieben:
Hello,
If you are trying to user Datashare in SERVER mode, you also need to configure Redis and Elasticsearch servers. You can check out this repo with a full example:
https://github.com/ICIJ/datashare-keycloak-integration
There you will find a docker-compose.yml including the two services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.9.1
restart: on-failure
volumes:
- type: volume
source: elasticsearchdata
target: /usr/share/elasticsearch/data
read_only: false
environment:
- "http.host=0.0.0.0"
- "transport.host=0.0.0.0"
- "cluster.name=datashare"
- "discovery.type=single-node"
- "discovery.zen.minimum_master_nodes=1"
- "xpack.license.self_generated.type=basic"
- "http.cors.enabled=true"
- "http.cors.allow-origin=*"
- "http.cors.allow-methods=OPTIONS, HEAD, GET, POST, PUT, DELETE"
networks:
intranet:
redis:
image: redis:4.0.1-alpine
restart: on-failure
networks:
intranet:
Please note I changed the ElasticSearch version to 7.9.1, the latest one compatible with Datashare.
—
Reply to this email directly, view it on GitHub #936 (comment), or unsubscribe https://github.com/notifications/unsubscribe-auth/A23IWUGU73JHFKDFWDVLW7DV4CLF5ANCNFSM6AAAAAAQCH7REQ.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello! We try to install datashare on our web server in server mode.
Our server administrator is stuck now. He writes: „In order to setup this they need to provide the docker images also for elasticsearch and redis so the docker run works properly.“
Can you advice us?
Beta Was this translation helpful? Give feedback.
All reactions