Question
Sphinx And Mysql In Cpanel
I Want to Install Sphinx And MYSQL Setup in Cpanel But It Shows Error OfLibs But libs Installed Already. So Best Way To Install Sphinx And Make It Run Also.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×
First we need to grab the Source pacakage from Sphinxsearch download section. use te below command to get the file.
now we have sphinx source package in our server.
First step is to uncompress the sphinx-2.0.4-release.tar.gz file using below command
then enter into the directory sphinx-2.0.4-release
Am installing sphinx in /usr/local/sphinx directory so we have to create the directory
mkdir /usr/local/sphinx
i want to install sphinx server in /usr/local/sphinx so i have to set the path while configure using -prefix option
we can specify sphinx to use MYSQL by adding –with-mysql to ./configure
./configure --prefix=/usr/local/sphinx --with-mysql
if above command not able to find mysql libraries. we have to provide the libraries path
For installing sphinx with PostgreSQL specify lik this –with-pgsql
./configure --prefix=/usr/local/sphinx --with-pgsql
if above command not able to find pgsql libraries. we have to provide the libraries path
./configure --prefix=/usr/local/sphinx --with-pgsql=/usr/local/include/postgresql
next setp is make and make install