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

Commit

Permalink
Adds Kibana tarball
Browse files Browse the repository at this point in the history
  • Loading branch information
aetter committed Sep 23, 2019
1 parent 7f74d97 commit 20f3312
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/install/tar.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ The tarball supports CentOS 7, Amazon Linux 2, Ubuntu 18.04, and most other Linu
1. Extract the TAR file to a directory and change to that directory:

```bash
tar -zxvf opendistroforelasticsearch-1.2.0.tar.gz
tar -zxf opendistroforelasticsearch-1.2.0.tar.gz
cd opendistroforelasticsearch-1.2.0
```

Expand Down
42 changes: 42 additions & 0 deletions docs/kibana/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,48 @@ sudo /bin/systemctl enable kibana.service
You can also modify the values in `/etc/kibana/kibana.yml`.


## Run Kibana using the tarball

1. Download the tarball:

```bash
curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistroforelasticsearch-kibana/opendistroforelasticsearch-kibana-1.2.0.tar.gz -o opendistroforelasticsearch-kibana-1.2.0.tar.gz
```

1. Download the checksum:

```bash
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
```

1. Verify the tarball against the checksum:

```bash
shasum -a 512 -c opendistroforelasticsearch-kibana-1.2.0.tar.gz.sha512
```

On CentOS, you might not have `shasum`. Install this package:

```bash
sudo yum install perl-Digest-SHA
```

1. Extract the TAR file to a directory and change to that directory:

```bash
tar -zxf opendistroforelasticsearch-kibana-1.2.0.tar.gz
cd opendistroforelasticsearch-kibana
```

1. If desired, modify `config/kibana.yml`.

1. Run Kibana:

```bash
./bin/kibana
```


## Get started with Kibana

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

0 comments on commit 20f3312

Please sign in to comment.