sphinxsearchHow can I configure SphinxSearch to log to stdout?
SphinxSearch can be configured to log to stdout with the following steps:
- Open
sphinx.confin a text editor. - Find the
searchdsection and add the following line:log = stdout - Save and close
sphinx.conf. - Restart SphinxSearch with the
--configoption, e.g.searchd --config /etc/sphinx/sphinx.conf.
The output will then be written to stdout, e.g.
[Fri Jan 31 15:06:45.890 2020] [0] listening on all interfaces, port=9312
[Fri Jan 31 15:06:45.890 2020] [0] listening on all interfaces, port=9306
[Fri Jan 31 15:06:45.890 2020] [0] listening on all interfaces, port=9308
[Fri Jan 31 15:06:45.890 2020] [0] listening on all interfaces, port=9315
[Fri Jan 31 15:06:45.890 2020] [0] listening on all interfaces, port=9313
[Fri Jan 31 15:06:45.890 2020] [0] listening on all interfaces, port=9309
For more information, see the SphinxSearch documentation.
More of Sphinxsearch
- How can I use Sphinx Search with Python to create an example application?
- How do I set up SphinxSearch with Zoom?
- How can I use Sphinx Search to create a wiki?
- How can I set up SphinxSearch to work with Yandex?
- How do I find the version of Sphinx Search I'm using?
- How do I install Sphinx Search?
- How do I install and configure Sphinxsearch on Ubuntu?
- How can I use Sphinx Search to generate word forms?
- How do I install SphinxSearch on Ubuntu 20.04?
- How do I access and use the SphinxSearch source code?
See more codes...