我正在尝试在断电后恢复etcd快照,但收到以下错误。
FATA[0020] [etcd] Failed to restore etcd snapshot: Failed to run etcd restore container, exit status is: 128, container logs: Error: snapshot missing hash but --skip-hash-check=false我正在运行rke etcd snapshot-restore --config rancher-cluster.yaml --name 202008091207.zip
发布于 2020-08-09 15:57:20
导致此问题的原因是快照名称参数中包含的.zip文件扩展名不正确。
快照名称参数(-- name )应包含快照名称,但不包括文件扩展名。
请尝试以下命令。
rke etcd snapshot-restore --config rancher-cluster.yaml --name 202008091207https://stackoverflow.com/questions/63323860
复制相似问题