influxdata / docs-v2

InfluxData Documentation that covers InfluxDB Cloud, InfluxDB OSS 2.x, InfluxDB OSS 1.x, InfluxDB Enterprise, Telegraf, Chronograf, Kapacitor, and Flux.
https://docs.influxdata.com
MIT License
72 stars 266 forks source link

Wrong download urls ? #5477

Closed adripa45 closed 4 months ago

adripa45 commented 4 months ago

URL : https://docs.influxdata.com/influxdb/v2/install/

The urls in https://docs.influxdata.com/influxdb/v2/install/#install-influxdb-as-a-service-with-systemd seem to be incorrect.

_curl -O https://download.influxdata.com/influxdb/releases/influxdb2_2.7.6-1_amd64.deb % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0_

If I change for the url used for a previous version, it works _curl -O https://**dl**.influxdata.com/influxdb/releases/influxdb2_2.7.6-1_amd64.deb % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 44.9M 100 44.9M 0 0 57.4M 0 --:--:-- --:--:-- --:--:-- 57.3M_

jstirnaman commented 4 months ago

Thanks for reporting this. If you tell curl to follow redirects, it should work--for example:

curl -LO https://download.influxdata.com/influxdb/releases/influxdb2_2.7.6-1_amd64.deb

Apologies for the confusion.

We need to update the examples to follow redirects from the new subdomain (download.influxdata.com).