go-ipfs version: 0.4.17
repo version: 7
System version: 386/windows
Golang version: go1. 10.3
After two weeks, my ipfs is present this error when I try started.
Error: leveldb/storage: corrupted or incomplete meta file.
How can I fixed?
Tks
I haven't done that on windows, but can you try something like this (after installing python/pip):
> pip install leveldb
(cd into the .ipfs directory in your home dir)
> python
>>> import leveldb
>>> leveldb.RepairDB('./datastore')
>>> exit()
Alternatively, try building/installing the latest master. We now automatically recover corrupted leveldb databases.
Duplicate of: #4981
Are there a solution for Windows? Just try building/installing from master?
Tks
That or the python method (that should also work on windows but requires python).
You can get binaries from ci - https://ci.ipfs.team/job/IPFS/job/go-ipfs/job/master/ (for windows you'll need to rename ipfs to ipfs.exe)
I deleted the files and just started again the daemon. It's work.
Most helpful comment
Alternatively, try building/installing the latest master. We now automatically recover corrupted leveldb databases.