Im trying to install sphinx search on my EC2 instance. I keep running into dependency issues. I tried using:
'yum install sphinx'
but it wants to install an old version and it gets dependency issues:
Error: Package: sphinx-0.9.9-1.el5.rf.x86_64 (rpmforge) Requires: libodbc.so.1()(64bit) Error: Package: sphinx-0.9.9-1.el5.rf.x86_64 (rpmforge) Requires: libmysqlclient.so.15(libmysqlclient_15)(64bit) Error: Package: sphinx-0.9.9-1.el5.rf.x86_64 (rpmforge) Requires: libmysqlclient.so.15()(64bit) Error: Package: sphinx-0.9.9-1.el5.rf.x86_64 (rpmforge) Requires: libpq.so.4()(64bit)
When i try installing from the newest stable rpm off the sphinx search site i get these dependency issues:
error: Failed dependencies: libcrypto.so.6()(64bit) is needed by sphinx-2.0.3-1.rhel5.x86_64 libexpat.so.0()(64bit) is needed by sphinx-2.0.3-1.rhel5.x86_64 libmysqlclient.so.15()(64bit) is needed by sphinx-2.0.3-1.rhel5.x86_64 libmysqlclient.so.15(libmysqlclient_15)(64bit) is needed by sphinx-2.0.3-1.rhel5.x86_64 libssl.so.6()(64bit) is needed by sphinx-2.0.3-1.rhel5.x86_64
I googled all of those package names and I have installed all of the things that provide those libraries. I used yum install to get all of the below packages installed.
-mysql -> libmysqlclient.so.15 & libmysqlclient.so.15(libmysqlclient_15)
-openssl & openssl098e.i686 0:0.9.8e-17.7.amzn1 -> libcrypto.so.6 & libssl.so.6
-compat-expat-1.95.8-8.3.6.amzn1.i686 -> libexpat.so.0
Can someone tell me what im missing ? I know i could force install the sphinx RPM but i understand that can lead to problems.
Thx.