Create Readme.md

This commit is contained in:
millerthomasj 2016-07-13 09:38:47 -06:00 committed by GitHub
parent fcd5df1ad3
commit 4c56e68249
1 changed files with 44 additions and 0 deletions

44
README.md Normal file
View File

@ -0,0 +1,44 @@
FTS-Keystone
=====
Keystone authentication support for Kibana 4.4.x
Installation
-----
Requires a working version of Kibana. The kibana configuration file (/opt/kibana/config/kibana.yml) should be updated
with the following:
```
fts-keystone.port: ${keystone_port}
fts-keystone.url: http://${keystone_host}
fts-keystone.enabled: True
```
To install the fts-keystone plugin, first the latest release should be downloaded:
```
$ (cd /tmp; wget https://github.com/FujitsuEnablingSoftwareTechnologyGmbH/fts-keystone/releases/download/v0.0.1/fts-keystone-0.0.1.tar.gz; cd -)
```
Then installed using the Kibana plugin manager tool:
```
$ /opt/kibana/bin/kibana plugin --install fts-keystone --url file:///tmp/fts-keystone-0.0.1.tar.gz
Installing fts-keystone
Attempting to transfer from file:///tmp/fts-keystone-0.0.1.tar.gz
Transferring 7567007 bytes....................
Transfer complete
Extracting plugin archive
Extraction complete
Optimizing and caching browser bundles...
Plugin installation complete
$ /opt/kibana/bin/kibana plugin --list
fts-keystone
```
Now start/restart your Kibana server by running:
```
$ service kibana restart
```