This is an error that I've been running into lately when I go to start a fresh instance of a fiftyone. Here it is:
Process 8027 (service/main.py --51-service db --multi) did not respond
{"t":{"$date":"2022-12-13T12:43:10.939Z"},"s":"I", "c":"CONTROL", "id":20697, "ctx":"-","msg":"Renamed existing log file","attr":{"oldLogPath":"/home/isaac/.fiftyone/var/lib/mongo/log/mongo.log","newLogPath":"/home/isaac/.fiftyone/var/lib/mongo/log/mongo.log.2022-12-13T12-43-10"}}
Subprocess ['/home/isaac/.local/lib/python3.8/site-packages/fiftyone/db/bin/mongod', '--dbpath', '/home/isaac/.fiftyone/var/lib/mongo', '--logpath', '/home/isaac/.fiftyone/var/lib/mongo/log/mongo.log', '--port', '0', '--nounixsocket'] exited with error 100:
I have a solution but it feels more like a temporary fix because the error reoccurs when I reboot my computer.
Anybody have permanent solution?
Here's my temporary fix:
This will delete all stored data you have in fiftyone
pip3 uninstall fiftyone
rm -r /home/user/.fiftyone/var/lib/mongo
pip3 install fiftyone
This is a pretty lame fix as I have to do this every time I restart and want to start a fiftyone instance. If anybody has something better I'd love to hear it!