Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I stop the error "The ordinal 3252 could not be located in the dynamic link library mongod.exe"?

Tags:

mongodb

nosql

Here are my development computer's specifications:

Windows 8.1 Single Language Processor: Intel Core i3-4005U CPU @ 1.70GHz 1.70GHz Installed memory (RAM): 4.00 GB System Type: 64-bit Operating System, x64-based processor

I installed Mongo DB Win32 x86_64-2008 with SSL 3.0.7 pre

However, when I run "mongod.exe --dbpath db" from DOS command, I get the following error:

"The ordinal 3252 could not be located in the dynamic link library mongod.exe"

Why is the error showing up, and how do I stop the error?

like image 496
user1338998 Avatar asked Feb 10 '23 00:02

user1338998


2 Answers

This problem exists if you have downloaded the zipped version. Try to place libeay32.dll and ssleay32.dll in the bin directory.

like image 133
maniB Avatar answered Feb 11 '23 13:02

maniB


This error could occur if you've downloaded too old versions of openssl libs. Here's link to binaries: https://indy.fulgan.com/SSL/.

More on official openSSL web site : https://wiki.openssl.org/index.php/Binaries

At this time, the latest version is 1.0.2e. Be sure to get the right dll for your architecture (32 or 64 bits).

like image 25
remnoel Avatar answered Feb 11 '23 13:02

remnoel