How can I copy the data of an influxdb v1.8 to a influxdb v1.12 on another machine?
I already did on my old Raspberry Pi 3 B+ (InfluxDB 1.8) with old Buster:
influxd backup -portable /tmp/2026-02-08_influxdb_backup_portable
I copied then that directory to my new Raspberry Pi 3 B+ with Raspbian Trixie:
influxd restore -portable /tmp/2026-02-08_influxdb_backup_portable
This worked also. But now I want to migrate also the data which are saved since that restore also to the new Influx. I first tried to do the same again, but this doesnt work, I get the error:
#influxd restore -portable /tmp/2026-02-08_influxdb_backup_portable
2026/02/08 15:26:38 error updating meta: DB metadata not changed. database may already exist
restore: DB metadata not changed. database may already exist
How can I restore now just the new data since the restore?
Or do I need to delete the restored data (how?) and do all again just when I switch my two raspberries?
The thing is, that my old RP3 is in use and I get always new data into my influxdb, so when I switch I dont want to loose too much of the data.
Best would be if it were possible to just write the data from the old RP3 over the data from the new RP3 so that I loose only the minimum. How is that done?
Thank
