diff --git a/content/shared/influxdb3-admin/backup-restore.md b/content/shared/influxdb3-admin/backup-restore.md index 8b25edf34a..8f770e8b85 100644 --- a/content/shared/influxdb3-admin/backup-restore.md +++ b/content/shared/influxdb3-admin/backup-restore.md @@ -298,7 +298,7 @@ BACKUP_DIR="/backup/BACKUP_DATE" DATA_DIR="/path/to/data" # 1. Stop InfluxDB -systemctl stop influxdb3 || docker stop influxdb3-core +systemctl stop influxdb3-{{< product-key >}} || docker stop influxdb3-{{< product-key >}} # 2. Optional: Clear existing data for clean restore rm -rf ${DATA_DIR}/${NODE_ID}/* @@ -315,7 +315,7 @@ cp -r ${BACKUP_DIR}/snapshots ${DATA_DIR}/${NODE_ID}/ chown -R influxdb:influxdb ${DATA_DIR}/${NODE_ID} # 5. Start InfluxDB -systemctl start influxdb3 || docker start influxdb3-core +systemctl start influxdb3-{{< product-key >}} || docker start influxdb3-{{< product-key >}} ``` Replace the following: diff --git a/content/shared/influxdb3-admin/upgrade.md b/content/shared/influxdb3-admin/upgrade.md index 141363a1f7..9a82390260 100644 --- a/content/shared/influxdb3-admin/upgrade.md +++ b/content/shared/influxdb3-admin/upgrade.md @@ -84,13 +84,13 @@ curl -L https://dl.influxdata.com/influxdb/releases/influxdb3-{{< product-key >} tar xvzf influxdb3-{{< product-key >}}.tar.gz # 3. Stop the service -sudo systemctl stop influxdb3 +sudo systemctl stop influxdb3-{{< product-key >}} # 4. Install the new binary sudo cp influxdb3 /usr/local/bin/ # 5. Start the service -sudo systemctl start influxdb3 +sudo systemctl start influxdb3-{{< product-key >}} ``` {{% /tab-content %}} {{% tab-content %}} @@ -196,14 +196,14 @@ Follow these steps to upgrade each node in your deployment: ```bash # 1. Stop the service -sudo systemctl stop influxdb3 +sudo systemctl stop influxdb3-{{< product-key >}} # 2. Install the new version # Follow the installation instructions for your platform: # https://docs.influxdata.com/influxdb3/enterprise/install/ # 3. Start the service -sudo systemctl start influxdb3 +sudo systemctl start influxdb3-{{< product-key >}} # 4. Verify the version influxdb3 --version