- 2014.11.07
- basic authentication (temporal method)
- sudo su -c 'rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm'
- sudo yum install nginx
- sudo yum -y install httpd-tools
- sudo htpasswd -c /etc/nginx/conf.d/.htpasswd tester
- cd /etc/nginx/conf.d
- sudo vim kibana.conf
server { listen 9201; server_name hadoopdev-03; charset utf-8; location / { auth_basic "Restricted"; auth_basic_user_file /etc/nginx/conf.d/.htpasswd; root /opt/kibana; index index.html index.htm; } }
- cd /opt/
- sudo wget https://download.elasticsearch.org/kibana/kibana/kibana-3.1.1.zip
- sudo unzip kibana-3.1.1.zip
- cd kibana-3.1.1/
- sudo vim config.js
- elasticsearch: "http://x.x.x.x:9200",
- cd ..
- sudo ln -s kibana-3.1.1/ kibana
- sudo service nginx start
- http://x.x.x.x:9201/#/dashboard/elasticsearch/Security_Team
- basic authentication (temporal method)
Wednesday, July 29, 2015
Kibana 4 Test
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.