我在Windows工作,我想启动sphinx搜索服务。我尝试使用命令行启动,然后在“服务”面板列表中,但是我有这个错误
Windows无法在本地计算机上启动SphinxSearch服务错误: 1067该过程意外终止。
我已经搜索并尝试了另一个我发现的帖子中的解决方案
这是我的配置文件C:\ Sphinx \ bin \ sphinx.conf
searchd
{
listen= 127.0.0.1:9306:mysql41
log = C:\Sphinx\log\searchd.log
query_log = C:\Sphinx\log\query.log
pid_file = C:\Sphinx\log\searchd.pid
}
index news
{
source = news
path =C:\Sphinx\data\news
}
indexer
{
mem_limit = 32M
}
source news
{
type = mysql
sql_host = localhost
sql_user = root
sql_pass =
sql_db = newssdz
sql_query_pre = SET NAMES utf8
sql_query = SELECT id\
, categorie\
, titre\
, contenu FROM news
sql_attr_uint = categorie
sql_query_info = SELECT titre FROM news WHERE id=$id
}
我的错误日志文件为空,因此无法找到问题所在。 我已经更改了所有文件夹的写入权限。
请帮我解决这个问题。