brave-egg-3182
02/05/2023, 3:35 PMrke etcd snapshot-save --config cluster.yml --name first-snapshot
command, I face the following issue:
invalid memory address or nil pointer
This error has been solved but I can't find the snapshot (it's name in the above case is first-snapshot) in my files.
find / -name first-snapshot 2>/dev/null
The above command didn't find any file on my computer.bulky-sunset-52084
02/05/2023, 6:56 PM/opt
the file will have the date appended to it so the reason the find command didn't work is because there won't be a literal file called 'first-snapshot' I would use a wildcard (*) in the find command to find it so like:
find / -name "first-snapshot*" 2>/dev/null
brave-egg-3182
02/06/2023, 7:54 AMinvalid memory address or nil pointer
error I got? I don't know what the problem is?bulky-sunset-52084
02/06/2023, 7:30 PM