Could please tell me how to install specific version of influxdb package in ubuntu 16.04?
If you want to install a specific version of InfluxDB, you’ll need to download the package manually and install it by hand.
We don’t have an index page for older versions, so you’ll need to navigate through Releases · influxdata/influxdb · GitHub to find the version you want.
If you know the version number, the .deb can be downloaded from https://dl.influxdata.com/influxdb/releases/influxdb-<version>_amd64.deb
where <version>
is the version number.
So for version 1.5.1
, the link would be https://dl.influxdata.com/influxdb/releases/influxdb_1.5.1_amd64.deb
And for 1.4.3
, https://dl.influxdata.com/influxdb/releases/influxdb_1.4.3_amd64.deb
Once you have the package, you can install it with:
$ sudo dpkg -i influxdb_1.4.3_amd64.deb
1 Like
Thank you very much.
1 Like