Install Elasticsearch, Logstash, and Kibana on Ubuntu 14.04
1.4K
docker run -i -t -d --name=elk -h=elk -p 5001:80 -p 5044:5044 cristo/elk /bin/bash
ssh -port root@localhost
password: root
server {
listen *:80;
server_name localhost;
proxy_set_header Host localhost;
client_max_body_size 100M;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_cache off;
proxy_pass http://localhost:5001;
}
}
Use htpasswd to create an 'admin' user with password 'admin', (you should use another name), that can access the Kibana web interface:
sudo htpasswd -c -b /etc/nginx/htpasswd.users admin admin
Remember this login, as you will need it to access the Kibana web interface.
Added etcKeeper - autocommit on exit to /etc git local repository
[Docker Hub] (https://registry.hub.docker.com/u/cristo/symfony2/)
[Git Hub] (https://github.com/monte-fm/symfony2)
Content type
Image
Digest
Size
834.6 MB
Last updated
over 9 years ago
docker pull cristo/elk