Kibana yum repo

the repo below will install the latest Kibana version (which now is 5.2.1) - how can i install a specific version (l am looking for Kibana 5.0.0). I am using Yum. Thanks,

[kibana-5.x]
name=Kibana repository for 5.x packages
baseurl=https://artifacts.elastic.co/packages/5.x/yum
gpgcheck=1
gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch
enabled=1
autorefresh=1
type=rpm-md

We keep older versions in the same repo, so something like yum install kibana-5.0.0 should work.

To see what particular versions are available in yum repository run the below command.

`yum --showduplicates list kibana | expand`

Available Packages
kibana                       xxx.xxx.xx                         fedora 
kibana                       xxx.xxx.xx                        updates

Then you can use the below command to choose the package version and install it.

yum install <package name>-<version info>

For Example :

yum install kibana-.xxx.xxx.xx

If you are facing some error during installation, Recheck the configuration part. Refer the below link.

1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.