Logstash Container build.
4.6K
ElasticSearch, Logstash, Kibana Container Build
Built from appcontainers/centos65
Build container using default values.
docker build -t appcontainers/logstash .
Running the container
The container is built to allow several configurable variables to be passed in at runtime. The values are as follows:
Run the container using default values
docker run -d -it --name logstash -h logstash -p 81:80 -p 9200:9200 -p 9300:9300 -p 5000:5000 appcontainers/logstash
This will assume the following
Run the container substituting the $varables with your own custom values
docker run -d -i -t \
--name logstash \
-h logstash \
-p 81:80 \
-p 9200:9200 \
-p 9300:9300 \
-p 5000:5000 \
-e FQDN='testapp.com' \
appcontainers/logstash
Navigate to the IP address of the server on the port specified (81 default) to access the main Kibana Dashboard
Important Note: This container uses a certificate to communicate with all configured logstash-forwarders. Backup up the generated certifciate, as a new certificate will be generated if the container is rebuilt (not re-ran). The certificate can be found in /etc/pki/tls/certs and /etc/pki/tls/private for the key
Content type
Image
Digest
sha256:7c7f9fabe…
Size
394.2 MB
Last updated
almost 11 years ago
docker pull appcontainers/logstash