Advertisement
Guest User

Untitled

a guest
May 31st, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. # Directory where the Elasticsearch binary distribution resides
  2. ES_HOME=/usr/share/elasticsearch
  3.  
  4. # Heap Size (defaults to 256m min, 1g max)
  5. #ES_HEAP_SIZE=2g
  6.  
  7. # Heap new generation
  8. #ES_HEAP_NEWSIZE=
  9.  
  10. # max direct memory
  11. #ES_DIRECT_SIZE=
  12.  
  13. # Additional Java OPTS
  14. #ES_JAVA_OPTS=
  15.  
  16. # Maximum number of open files
  17. MAX_OPEN_FILES=65535
  18.  
  19. # Maximum amount of locked memory
  20. #MAX_LOCKED_MEMORY=
  21.  
  22. # Maximum number of VMA (Virtual Memory Areas) a process can own
  23. MAX_MAP_COUNT=262144
  24.  
  25. # Elasticsearch log directory
  26. LOG_DIR=/var/log/elasticsearch
  27.  
  28. # Elasticsearch data directory
  29. DATA_DIR=/var/lib/elasticsearch
  30.  
  31. # Elasticsearch work directory
  32. WORK_DIR=/tmp/elasticsearch
  33.  
  34. # Elasticsearch conf directory
  35. CONF_DIR=/etc/elasticsearch
  36.  
  37. # Elasticsearch configuration file (elasticsearch.yml)
  38. CONF_FILE=/etc/elasticsearch/elasticsearch.yml
  39.  
  40. # User to run as, change this to a specific elasticsearch user if possible
  41. # Also make sure, this user can write into the log directories in case you change them
  42. # This setting only works for the init script, but has to be configured separately for systemd startup
  43. ES_USER=elasticsearch
  44.  
  45. # Configure restart on package upgrade (true, every other setting will lead to not restarting)
  46. #RESTART_ON_UPGRADE=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement