PHP PECL Sphinx मॉड्यूल स्थापित नहीं होगा


1

मैं PECL का उपयोग करके अपने डेबियन 7 सर्वर पर PHP स्फिंक्स क्लाइंट (PHP 5.6) स्थापित करने की कोशिश कर रहा हूं। मुझे भ्रामक त्रुटि "गलत libsphinxclient संस्करण या काम नहीं मिला" जब निर्माण करने की कोशिश कर रहा हूं, तब भी जब मैंने Sphinx स्थापित किया है और लाइब्रेरी / usr / lib देख सकता हूं।

# pecl install sphinx
downloading sphinx-1.3.2.tgz ...
Starting to download sphinx-1.3.2.tgz (15,282 bytes)
.....done: 15,282 bytes
4 source files, building
running: phpize
Configuring for:
PHP Api Version:         20131106
Zend Module Api No:      20131226
Zend Extension Api No:   220131226
Please provide the installation prefix of libsphinxclient [autodetect] :
building in /tmp/pear/temp/pear-build-rootAWbWVD/sphinx-1.3.2
running: /tmp/pear/temp/sphinx/configure --with-sphinx
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for a sed that does not truncate output... /bin/sed
checking for cc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking how to run the C preprocessor... cc -E
checking for icc... no
checking for suncc... no
checking whether cc understands -c and -o together... yes
checking for system library directory... lib
checking if compiler supports -R... no
checking if compiler supports -Wl,-rpath,... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for PHP prefix... /usr
checking for PHP includes... -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib
checking for PHP extension directory... /usr/lib/php5/20131226
checking for PHP installed headers prefix... /usr/include/php5
checking if debug is enabled... no
checking if zts is enabled... no
checking for re2c... no
configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
checking for gawk... no
checking for nawk... nawk
checking if nawk is broken... no
checking for sphinx support... yes, shared
checking for libsphinxclient headers in default path... found in /usr/local
checking for sphinx_create in -lsphinxclient... no
configure: error: wrong libsphinxclient version or lib not found
ERROR: `/tmp/pear/temp/sphinx/configure --with-sphinx' failed

जवाबों:


1

स्फिंक्स एक आवश्यक निर्भरता याद कर रहा है, और कॉन्फ़िगर स्क्रिप्ट विफलता का कारण गलत व्याख्या कर रहा है। Glibc के सही संस्करण को स्थापित करने से समस्या ठीक हो गई।

मैं यह पोस्ट कर रहा हूं क्योंकि मुझे प्राप्त होने वाले त्रुटि संदेश के लिए कोई प्रासंगिक Google हिट नहीं था।

मैंने समस्या की पहचान करने के लिए निम्नलिखित प्रक्रिया का उपयोग किया:

~# pecl download sphinx
downloading sphinx-1.3.2.tgz ...
Starting to download sphinx-1.3.2.tgz (15,282 bytes)
.....done: 15,282 bytes
File /root/MP/sphinx-1.3.2.tgz downloaded
~# tar -xf sphinx-1.3.2.tgz
~# cd sphinx-1.3.2/
~/sphinx-1.3.2# phpize
Configuring for:
PHP Api Version:         20131106
Zend Module Api No:      20131226
Zend Extension Api No:   220131226
~/sphinx-1.3.2# ./configure
[... same output as above ...]
~/sphinx-1.3.2# less config.log
[...]
configure:4059: checking for sphinx_create in -lsphinxclient
configure:4084: cc -o conftest -g -O2  -Wl,-rpath,/usr/local/lib -L/usr/local/lib  -lm conftest.c -lsphinxclient   >&5
/usr/local/lib/libsphinxclient.so: undefined reference to `__fdelt_chk@GLIBC_2.15'
/usr/local/lib/libsphinxclient.so: undefined reference to `memcpy@GLIBC_2.14'
[...]

0

मेरे पास एक ही समस्या है और यह मेरे लिए Ubuntu 14.04 भरोसेमंद में काम करता है

सबसे पहले आपको sphinxsearch इंस्टॉल करना होगा

sudo apt-get install sphinxsearch sphinxbase-utils libsphinxbase-dev

इसके बाद एपि लिबासफिंक्लाइंट फोल्डर में जाएं और इंस्टॉल करें

cd /usr/share/sphinxsearch/api/libsphinxclient
sudo ./configure
sudo make
sudo make install

तब आप pecl का उपयोग करके स्फिंक्स क्लाइंट स्थापित कर सकते हैं

sudo pecl install sphinx

इंस्टॉल करने के बाद याद रखें कि आपको php.ini फ़ाइल में एक्सटेंशन = sphinx.so जोड़ना होगा और अपाचे सर्वर को पुनरारंभ करना होगा

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.