#!/usr/bin/php
# Ansible managed
# Minimal Sphinx configuration for Bitrix
#
# Include site search db
<?php
$includeConfig = "\n\n";
$confDir = "/etc/sphinx/bx/search_index";
if(is_dir($confDir))
{
if($dh = opendir($confDir))
{
while(($file = readdir($dh)) !== false)
{
if($file == "." || $file == "..")
continue;
$includeConfig .= file_get_contents($confDir.'/'.$file)."\n\n";
}
closedir($dh);
}
}
echo $includeConfig;
?>
index testrt
{
type = rt
rt_mem_limit = 128M
path = /var/lib/sphinx/testrt
rt_field = title
rt_field = content
rt_attr_uint = gid
}
searchd
{
listen = 9312
listen = 9306:mysql41
log = /var/log/sphinx/searchd.log
query_log = /var/log/sphinx/query.log
pid_file = /var/run/sphinx/searchd.pid
binlog_path = /var/lib/sphinx
read_timeout = 5
max_children = 30
max_matches = 1000
seamless_rotate = 1
preopen_indexes = 1
unlink_old = 1
workers = threads # for RT to work
binlog_max_log_size = 512M
# 2 - flush every transaction, sync every second. Good performance, and every committed transaction is guaranteed to be saved in case of daemon crash.
# 1 - flush and sync every transaction. Worst performance, but every committed transaction data is guaranteed to be saved
binlog_flush = 2
rt_flush_period = 3600
}
# 22
indexer
{
lemmatizer_cache = 128M
}
common
{
lemmatizer_base = /etc/sphinx/bx/dicts/
}
Вот такая ошибка. Наверняка, сталкивались с такой ?