Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

mongod: error while loading shared libraries: libssl.so.10 libcrypto.so.10

Problem

I downloaded the mongodb 3.0.7 tar files. Then I added the bin directory to my path:

export PATH=<mongodb-install-directory>/bin:$PATH

Then when I run the mongodb server:

mongod --fork --logpath "/home/me/mongolog" --dbpath "/home/me/data"

I get this error:

mongod: error while loading shared libraries: libssl.so.10: cannot open shared object file: No such file or directory

What I did

I tried this solution. In brief I updated my openssl:

sudo apt-get update
sudo apt-get install libssl1.0.0 libssl-dev

and then:

cd /lib/x86_64-linux-gnu
sudo ln -s libssl.so.1.0.0 libssl.so.10
sudo ln -s libcrypto.so.1.0.0 libcrypto.so.10

but it says that it cannot find libssl.so.10 and libcrypto.so.10. I don't know what to do!

like image 905
Hadi Avatar asked Nov 13 '15 13:11

Hadi


2 Answers

sudo apt-get purge mongodb-org*

Just start over from here.

If you don't want 3.2, do not

sudo apt-get install -y mongodb-org

Specify the version for all the individual components in the next step.

OR you can copy the correct version link from mongodb.

You will need to

cd /Downloads 
wget wget https://fastdl.mongodb.org/linux/mongodb-correct-version.tgz
tar -zxvf mongodb-correct-version.tgz 

You should see all the executables. Make sure /usr/local/bin is in your PATH

echo $PATH

Create a symbolic link for the mongod server and check the version.

sudo ln -s ~/Downloads/mongodb-correct-version/bin/mongod /usr/local/sbin/bin/mongod
mongod --version

Now create a symbolic link for the shell and check the version.

sudo ln -s ~/Downloads/mongodb-correct-version/bin/mongo /usr/local/bin/mongo
mongo --version

Create a directory path for the server.

mkdir ~/data
mkdir ~/data/db 

Start the server and let it run from a separate terminal than the shell.

mongod --dbpath ~/data/db/

It should be listening on port 27017. In a new terminal, start mongo.

mongo
like image 163
user2607479 Avatar answered Nov 10 '22 07:11

user2607479


Check your server version, your system may be centos, but downloaded the ubuntu version of the mongodb. Download again just fine

wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.2.10.tgz

like image 38
曾田生 Avatar answered Nov 10 '22 09:11

曾田生