Upgrade InfluxDB
Upgrade your InfluxDB 3 Enterprise version.
Before you upgrade
Before upgrading your InfluxDB 3 Enterprise , review the release notes for compatibility requirements and then plan your upgrade strategy.
Verify your current version
Before upgrading, verify the InfluxDB 3 Enterprise version running on each node.
influxdb3 --versiondocker exec CONTAINER_NAME influxdb3 --versionReplace the following:
CONTAINER_NAME: The name of your InfluxDB 3 Enterprise container
The command returns version information similar to the following:
influxdb3 3.8.0
Verify your InfluxDB version
Before and after upgrading, verify the InfluxDB 3 Enterprise version running on your instance.
Upgrade an InfluxDB 3 instance
curl -O https://www.influxdata.com/d/install_influxdb3.sh \
&& sh install_influxdb3.sh pr-preview# 1. Download the new version
curl -L https://dl.influxdata.com/influxdb/releases/influxdb3-pr-preview-3.8.0_linux_amd64.tar.gz \
-o influxdb3-pr-preview.tar.gz
# 2. Extract the archive
tar xvzf influxdb3-pr-preview.tar.gz
# 3. Stop the service
sudo systemctl stop influxdb3
# 4. Install the new binary
sudo cp influxdb3 /usr/local/bin/
# 5. Start the service
sudo systemctl start influxdb3docker stop CONTAINER_NAME
docker pull influxdb:pr-preview
docker start CONTAINER_NAMEReplace the following:
CONTAINER_NAME: The name of your InfluxDB 3 Enterprise container
docker compose down
docker compose pull
docker compose up -d# Download the latest Windows binary
Invoke-WebRequest `
-Uri "https://dl.influxdata.com/influxdb/releases/influxdb3-pr-preview-3.8.0-windows_amd64.zip" `
-OutFile "influxdb3-pr-preview.zip"
# Extract the binary
Expand-Archive -Path influxdb3-pr-preview.zip -DestinationPath . -Force
# Stop the service, replace the binary, and start the service
Stop-Service influxdb3
Copy-Item -Path "influxdb3.exe" -Destination "C:\Program Files\InfluxData\influxdb3\" -Force
Start-Service influxdb3Was this page helpful?
Thank you for your feedback!
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for and this documentation. To find support, use the following resources:
- InfluxDB Community Slack (Preferred)
- InfluxDB Discord Server
- InfluxData Community
- InfluxDB Subreddit
Customers with an annual or support contract can contact InfluxData Support.