InfluxDB inconsistency? #1703

Closed
opened 2026-02-05 02:00:45 +03:00 by OVERLORD · 1 comment
Owner

Originally created by @seguri on GitHub (Oct 1, 2025).

Have you read and understood the above guidelines?

yes

📜 What is the name of the script you are using?

InfluxDB

📂 What was the exact command used to execute the script?

bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/influxdb.sh)"

⚙️ What settings are you using?

  • Default Settings
  • Advanced Settings

🖥️ Which Linux distribution are you using?

Debian 12

📈 Which Proxmox version are you on?

pve-manager/9.0.10/deb1ca707ec72a89 (running kernel: 6.14.11-2-pve)

📝 Provide a clear and concise description of the issue.

The script page says at the top "InfluxDB v3.5.0". The script actually installs version 1 or 2:

msg_info "Installing InfluxDB"
$STD apt-get update
if [[ $INFLUX == "2" ]]; then
  $STD apt-get install -y influxdb2
else
  $STD apt-get install -y influxdb
  curl -fsSL "https://dl.influxdata.com/chronograf/releases/chronograf_1.10.7_amd64.deb" -o "/chronograf_1.10.7_amd64.deb"
  $STD dpkg -i chronograf_1.10.7_amd64.deb
fi

🔄 Steps to reproduce the issue.

Run the install script; you'll be asked to install influxdb version 1 or 2.

Paste the full error output (if available).

root@influxdb:~# curl -i http://localhost:8086/ping
HTTP/1.1 204 No Content
X-Influxdb-Version: 1.12.2

🖼️ Additional context (optional).

No response

Originally created by @seguri on GitHub (Oct 1, 2025). ### ✅ Have you read and understood the above guidelines? yes ### 📜 What is the name of the script you are using? InfluxDB ### 📂 What was the exact command used to execute the script? bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/influxdb.sh)" ### ⚙️ What settings are you using? - [x] Default Settings - [ ] Advanced Settings ### 🖥️ Which Linux distribution are you using? Debian 12 ### 📈 Which Proxmox version are you on? pve-manager/9.0.10/deb1ca707ec72a89 (running kernel: 6.14.11-2-pve) ### 📝 Provide a clear and concise description of the issue. The [script page](https://community-scripts.github.io/ProxmoxVE/scripts?id=influxdb) says at the top "InfluxDB v3.5.0". The script actually installs version 1 or 2: ``` msg_info "Installing InfluxDB" $STD apt-get update if [[ $INFLUX == "2" ]]; then $STD apt-get install -y influxdb2 else $STD apt-get install -y influxdb curl -fsSL "https://dl.influxdata.com/chronograf/releases/chronograf_1.10.7_amd64.deb" -o "/chronograf_1.10.7_amd64.deb" $STD dpkg -i chronograf_1.10.7_amd64.deb fi ``` ### 🔄 Steps to reproduce the issue. Run the install script; you'll be asked to install influxdb version 1 or 2. ### ❌ Paste the full error output (if available). ``` root@influxdb:~# curl -i http://localhost:8086/ping HTTP/1.1 204 No Content X-Influxdb-Version: 1.12.2 ``` ### 🖼️ Additional context (optional). _No response_
OVERLORD added the bug label 2026-02-05 02:00:45 +03:00
Author
Owner

@MickLesk commented on GitHub (Oct 1, 2025):

The Website is just an Crawling of newreleases.io, it crawl the "latest" release and is not relevant to script. I update the regex in newreleases

@MickLesk commented on GitHub (Oct 1, 2025): The Website is just an Crawling of newreleases.io, it crawl the "latest" release and is not relevant to script. I update the regex in newreleases
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ProxmoxVE#1703