如何检查rethinkdb进程

时间:2015-12-22 22:29:41

标签: ubuntu rethinkdb

我在后台运行rethinkdb并在启动时符合https://www.rethinkdb.com/docs/start-on-startup/(快速设置)。

但是如何在服务器终端中找到该进程? 如果我输入rethinkdb,它表示它已经在运行/正在侦听该端口。 RethinkDb正在运行,但我想知道如何在我的ubuntu服务器上访问它。

1 个答案:

答案 0 :(得分:1)

RethinkDB没有像MySQL这样的shell访问控制台客户端。您可以使用RethinkDB管理仪表板作为REPL工具。它通常在端口8080上运行,因此您可以使用127.0.0.1:8080来访问它。但由于它在服务器上并且您不想将其绑定到公共IP,因此您可以使用SSH端口转发,如https://rethinkdb.com/docs/security/#via-a-socks-proxy

您可以了解有关仪表板和RethinkDB的更多信息https://www.rethinkdb.com/docs/quickstart/

如果您仍想要CLI REPL,请尝试尝试:https://github.com/stiang/recli

RethinkDB在官方cli上有问题:https://github.com/rethinkdb/rethinkdb/issues/189