grtjn / mlvagrant

Scripts for bootstrapping a local MarkLogic cluster for development purposes using https://www.vagrantup.com/ and https://www.virtualbox.org/.
Apache License 2.0
19 stars 16 forks source link

Trying to install ML 9.0-9 failed dependency #132

Closed grtjn closed 5 years ago

grtjn commented 5 years ago

Daniel H tried installing ML 9.0-9 in the CentOS 7.2 vagrant box I have, but got stuck with this message:

> sudo rpm -i /space/software/MarkLogic-9.0-9.x86_64.rpm 
error: Failed dependencies:
    libltdl.so.7()(64bit) is needed by MarkLogic-9.0-9.x86_64
grtjn commented 5 years ago

Searching for that specific lib on the web and with yum search, revealed a libtool-ltdl.x86_64 package. The following command should be run, which allows installing ML 9.0-9 after all, as confirmed by Daniel as well:

yum install libtool-ltdl.x86_64

(after which you have to repeat the rpm -i mentioned above..)