使用“./bin/cassandra -f”启动 Cassandra 时出现问题
由于某种原因,当我尝试使用以下命令启动 Cassandra 时:
bin/cassandra -f
终端卡在:
正在监听 thrift 客户端...
这正常吗?这是否意味着 Thrift 也能说话?
我正在使用 Ubuntu 服务器。
For some reason when I try to start Cassandra with this command:
bin/cassandra -f
The terminal gets stuck on:
Listening for thrift clients...
Is it normal? Does that mean that Thrift can talk too Thrift?
I am using Ubuntu Server.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来很正常。 Cassandra -f 不会创建交互式会话,它只是在前台运行 Cassandra,但作为服务器进程运行。
要与 Cassandra 交互,您可以在另一个终端窗口中启动 CLI 会话。有关操作方法的详细信息,请参阅 http://wiki.apache.org/cassandra/CassandraCli这个,以及您可以运行的命令。
还有各种编程语言的客户端 - 请参阅 http://wiki.apache.org/cassandra/ClientOptions< /a>
另请参阅 start cassandra 与“./bin/cassandra -f”,如何返回终端窗口?
That sounds normal. Cassandra -f doesn't create an interactive session, it just runs Cassandra in the foreground, but as a server process.
To interact with Cassandra, you can start a CLI session in another terminal window. See http://wiki.apache.org/cassandra/CassandraCli for details of how to do this, and the commands that you can run.
There are also clients for various programming languages - see http://wiki.apache.org/cassandra/ClientOptions
See also start cassandra with "./bin/cassandra -f", how to have back the terminal window?