Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to start MongoDB MMS agent

Tags:

mongodb-mms

I installed the MMS agent for CentOS and when I start it as a service I see the following error in the log file , I have searched for this error , but could not find any reference can someone let me know what the issue is .

/usr/bin/mongodb-mms-monitoring-agent: error while loading shared libraries: libsasl2.so.2: cannot open shared object file: No such file or directory

Thank You.

like image 588
user1965449 Avatar asked Jul 26 '14 22:07

user1965449


1 Answers

I wrote to mongdb support and after their response, I was able to start the agent, the response was this:

To the best of my knowledge, Fedora 20 is equivalent to RHEL 7 which is not yet supported by MongoDB. There is work planned for this latter OS, but I cannot guarantee a timetable for that release. In the meantime, I believe it is possible to work around the issue with the following:

cd /lib64

sudo ln -s libsasl2.so.3.0.0 libsasl2.so.2

Hopefully this helps, and allows you to start the agent.

Thanks to André de Frere from MongoDB.

like image 194
jmdiego Avatar answered Oct 12 '22 17:10

jmdiego