You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/mongodb-memory-server-core/src/util/MongoInstance.ts
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -217,6 +217,10 @@ export default class MongoInstance {
217
217
this.instanceFailed('Mongod permission denied');
218
218
}elseif(/Datadirectory.*?notfound/i.test(log)){
219
219
this.instanceFailed('Data directory not found');
220
+
}elseif(/CURL_OPENSSL_3.*notfound/i.test(log)){
221
+
this.instanceFailed(
222
+
'libcurl3 is not available on your system. Mongod requires it and cannot be started without it. You should manually install libcurl3 or try to use older Mongodb version eg. 3.6.12'
223
+
);
220
224
}elseif(/shuttingdownwithcode/i.test(log)){
221
225
// if mongod started succesfully then no error on shutdown!
0 commit comments