建立 influx config
建立登入資訊
influx config create -n your-config -u http://localhost:8086 -p admin:password -o your-bucket
啟用 config
因登入資訊可能為多個,所以需要指令使用哪一個登入資訊
influx config your-config
以上做法可以省去找 token 的時間
備份指令
influx backup -b your-bucket-name /tmp/backup_$(date '+%Y-%m-%d_%H-%M')
還原指令
如果 bucket name 不變的話,可以不用特別指定 --new-bucket
influx restore /tmp/backup_2023-08-08_17-19/ --bucket your-bucket-name --new-bucket your-new-bucket-name