Skip to content
This repository was archived by the owner on Aug 16, 2022. It is now read-only.

Commit 20f3312

Browse files
committed
Adds Kibana tarball
1 parent 7f74d97 commit 20f3312

File tree

2 files changed

+43
-1
lines changed

2 files changed

+43
-1
lines changed

docs/install/tar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The tarball supports CentOS 7, Amazon Linux 2, Ubuntu 18.04, and most other Linu
3838
1. Extract the TAR file to a directory and change to that directory:
3939

4040
```bash
41-
tar -zxvf opendistroforelasticsearch-1.2.0.tar.gz
41+
tar -zxf opendistroforelasticsearch-1.2.0.tar.gz
4242
cd opendistroforelasticsearch-1.2.0
4343
```
4444

docs/kibana/index.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,48 @@ sudo /bin/systemctl enable kibana.service
5454
You can also modify the values in `/etc/kibana/kibana.yml`.
5555

5656

57+
## Run Kibana using the tarball
58+
59+
1. Download the tarball:
60+
61+
```bash
62+
curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistroforelasticsearch-kibana/opendistroforelasticsearch-kibana-1.2.0.tar.gz -o opendistroforelasticsearch-kibana-1.2.0.tar.gz
63+
```
64+
65+
1. Download the checksum:
66+
67+
```bash
68+
curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistroforelasticsearch-kibana/opendistroforelasticsearch-kibana-1.2.0.tar.gz.sha512 -o opendistroforelasticsearch-kibana-1.2.0.tar.gz.sha512
69+
```
70+
71+
1. Verify the tarball against the checksum:
72+
73+
```bash
74+
shasum -a 512 -c opendistroforelasticsearch-kibana-1.2.0.tar.gz.sha512
75+
```
76+
77+
On CentOS, you might not have `shasum`. Install this package:
78+
79+
```bash
80+
sudo yum install perl-Digest-SHA
81+
```
82+
83+
1. Extract the TAR file to a directory and change to that directory:
84+
85+
```bash
86+
tar -zxf opendistroforelasticsearch-kibana-1.2.0.tar.gz
87+
cd opendistroforelasticsearch-kibana
88+
```
89+
90+
1. If desired, modify `config/kibana.yml`.
91+
92+
1. Run Kibana:
93+
94+
```bash
95+
./bin/kibana
96+
```
97+
98+
5799
## Get started with Kibana
58100

59101
1. After starting Kibana, you can access it at port 5601. For example, [http://localhost:5601](http://localhost:5601){:target='\_blank'}

0 commit comments

Comments
 (0)