0
I’m trying to run Mongodb 3.2 on a 32-bit Windows7 machine, but I’m having trouble running the command mongod
in cmd, when I use the command it returns the following error:
2019-09-14T10:39:34.021-0300 I CONTROL [main] 2019-09-14T10:39:34.029-0300 W CONTROL [main] 32-bit Servers don’t have journaling enabled by default. Please use --Journal if you want Durability. 2019-09-14T10:39:34.033-0300 I CONTROL [main] 2019-09-14T10:39:34.184-0300 I CONTROL [main] Hotfix KB2731284 or later update is not insta lled, will zero-out data files 2019-09-14T10:39:34.255-0300 I CONTROL [initandlisten] Mongodb Starting : pid=4268 port=270 17 dbpath=C: data db 32-bit host=Fabricio-PC 2019-09-14T10:39:34.267-0300 I CONTROL [initandlisten] targetMinOS: Windows Vista/Windows S erver 2008 2019-09-14T10:39:34.274-0300 I CONTROL [initandlisten] db version v3.2.22 2019-09-14T10:39:34.292-0300 I CONTROL [initandlisten] git version: 105acca0d443f9a47c1a5bd 608fd7133840a58dd 2019-09-14T10:39:34.301-0300 I CONTROL [initandlisten] allocator: tcmalloc 2019-09-14T10:39:34.318-0300 I CONTROL [initandlisten] modules: None 2019-09-14T10:39:34.331-0300 I CONTROL [initandlisten] build Environment: 2019-09-14T10:39:34.337-0300 I CONTROL [initandlisten] distarch: i386 2019-09-14T10:39:34.343-0300 I CONTROL [initandlisten] target_arch: i386 2019-09-14T10:39:34.349-0300 I CONTROL [initandlisten] options: {} 2019-09-14T10:39:34.358-0300 I STORAGE [initandlisten] Exception in initAndListen: 28663 Ca nnot start server. The default Storage engine 'wiredTiger' is not available with this build of mongod. Please specify a Different Storage engine explicitly, e.g. --storageEngine=mmapv1 . , terminating 2019-09-14T10:39:34.369-0300 I CONTROL [initandlisten] dbexit: rc: 100
Obs: I’ve already created the folders data
and db
on disk C:\
;
what can I do to fix this mistake?
That’s the mistake: The default Storage engine 'wiredTiger' is not available with this build of mongod. Please specify a Different Storage engine explicitly, e.g. -storageEngine=mmapv1 try adding this parameter to the mongod call: --storageEngine=mmapv1
– danilo
worked, thank you very much
– Fabricio Barbosa Viegas