forked from wazuh/wazuh-docker
fix max file descriptors error on docker-compse
When using the docker-compose file, elasticsearch fails to start with the following error:
```
elasticsearch_1 | [1]: max file descriptors [4096] for elasticsearch process is too low, increase to at least [65535]
```
Adding
```
nofile:
soft: 65536
hard: 65536
```
to the elasticsearch ulimit section fixes the issue.
This commit is contained in:
@@ -27,6 +27,9 @@ services:
|
|||||||
memlock:
|
memlock:
|
||||||
soft: -1
|
soft: -1
|
||||||
hard: -1
|
hard: -1
|
||||||
|
nofile:
|
||||||
|
soft: 65536
|
||||||
|
hard: 65536
|
||||||
mem_limit: 2g
|
mem_limit: 2g
|
||||||
|
|
||||||
kibana:
|
kibana:
|
||||||
|
|||||||
Reference in New Issue
Block a user