Guest User

Untitled

a guest
May 21st, 2018
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. # create keystore
  2. tan@omega:~/downloads/kibana-6.2.4-linux-x86_64$ bin/kibana-keystore create
  3. Created Kibana keystore in /home/tan/downloads/kibana-6.2.4-linux-x86_64/data/kibana.keystore
  4.  
  5. # add value interactive
  6. tan@omega:~/downloads/kibana-6.2.4-linux-x86_64$ bin/kibana-keystore add elasticsearch.username
  7. Enter value for elasticsearch.username: ******
  8.  
  9. # add value non-interactive, helpful for cryptic generated passwords
  10. tan@omega:~/downloads/kibana-6.2.4-linux-x86_64$ echo "yourpassword" > password
  11. tan@omega:~/downloads/kibana-6.2.4-linux-x86_64$ cat password | bin/kibana-keystore add elasticsearch.password --stdin
  12.  
  13. # list settings, used in kibana.yml
  14. tan@omega:~/downloads/kibana-6.2.4-linux-x86_64$ bin/kibana-keystore list
  15. elasticsearch.username
  16. elasticsearch.password
Add Comment
Please, Sign In to add comment