Configuring Sphinx
A guide to configuring the Sphinx daemon (`searchd`) to index data from MariaDB, including setting up `sphinx.conf` and creating necessary users.
CREATE USER 'sphinx'@localhost
IDENTIFIED BY 'sphinx_password';
GRANT SELECT ON test.* TO 'sphinx'@localhost;sql_host = localhost
sql_user = sphinx
sql_pass = sphinx_password
sql_db = test
sql_port = 3306path = C:\Sphinx\docsidx
...
pid_file = C:\Sphinx\sphinx.pidLast updated
Was this helpful?

