gpt4 book ai didi

mysql - 通过 Linux 命令行连接到 SphinxQL

转载 作者:IT老高 更新时间:2023-10-28 23:47:06 25 4
gpt4 key购买 nike

我正在尝试通过 Linux 命令行连接到 SphinxQL 服务器:

> mysql -P 9306

ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

我的 Sphinx 配置文件有 2 个监听条目:

listen                  = 9312
listen = 9306:mysql41

searchd 守护进程正在运行:

> ps ax | grep searchd
10727 ? S 0:00 /usr/local/sphinx/bin/searchd
10728 ? Sl 0:00 /usr/local/sphinx/bin/searchd

常规搜索查询非常有效:

> /usr/local/sphinx/bin/search StackOverflow | more

Sphinx 2.0.4-release (r3135)
Copyright (c) 2001-2012, Andrew Aksyonoff
Copyright (c) 2008-2012, Sphinx Technologies Inc (http://sphinxsearch.com)

using config file '/usr/local/sphinx/etc/sphinx.conf'...
index 'test1': query 'StackOverflow ': returned 2 matches of 2 total in 0.009 sec

displaying matches:
1. document=1788212, weight=1797
id=1788212
...

那么,我做错了什么?如何访问 SphinxQL 控制台?

任何提示将不胜感激。提前致谢!

最佳答案

'mysql' 客户端,如果检测到 mysql 在 unix-socket 上运行,将完全忽略 -P 参数。所以真的,即使你要求 sphinxQL 端口,你正在连接到 mysql

使用

mysql -P9306 --protocol=tcp

告诉客户端忽略套接字。

专业提示:

mysql -P9306 --protocol=tcp --prompt='sphinxQL> '

这是一个有用的持续提醒您连接到 sphinx 而不是 mysql :)

关于mysql - 通过 Linux 命令行连接到 SphinxQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12126948/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com