forked from ricarkol/crawler-elk-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupervisord.conf
More file actions
33 lines (29 loc) · 778 Bytes
/
supervisord.conf
File metadata and controls
33 lines (29 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[supervisord]
nodaemon=true
[program:elasticsearch]
directory=/opt/elasticsearch
command=/opt/elasticsearch/bin/elasticsearch
environment=JAVA_HOME="/usr/lib/jvm/jre"
user=elasticsearch
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
[program:logstash]
directory=/opt/logstash
command=/opt/logstash/bin/logstash -f /etc/logstash/conf.d
environment=JAVA_HOME="/usr/lib/jvm/jre"
user=logstash
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
[program:kibana]
directory=/opt/kibana
command=/opt/kibana/bin/kibana
environment=HOME="/opt/kibana"
user=kibana
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0