coreseek/sphinx建索引报错

1.错误描述
(1)问题1
[op@AY130327173907302bec csft3]$ ./bin/indexer -c etc/sphinx.conf --rotate ksf_question_index
./bin/indexer: error while loading shared libraries: libmysqlclient.so.16: cannot open shared object file: No such file or directory
(2)问题2

WARNING: failed to open pid_file '/data/eh/coreseek-3.2.14/csft3/var/log/searchd.pid'.
WARNING: indices NOT rotated.

2.解决方法
(1)进入mysql目录下的lib目录,找到libmysqlclient.so.16,建立软链,

ln -s /data/eh/mysql5/lib/libmysqlclient.so.16 /usr/lib/libmysqlclient.so.16
(2)该问题是由于searchd服务是由更高级的用户开启的,现在的用户因为权限低,无法使用该服务。解决方法是先使用高级用户将searchd服务kill了,再使用当前用户开启searchd服务(./bin/searchd -c etc/sphinx.conf )。注意带上配置文件的参数。

你可能感兴趣的:(sphinx,coreseek,indexer,NOTrotated)